Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Jun 2006 10:23:50 -0400
From:      John Baldwin <jhb@freebsd.org>
To:        freebsd-current@freebsd.org
Cc:        Krassimir Slavchev <krassi@bulinfo.net>, jasone@freebsd.org
Subject:   Re: memory leak in free()
Message-ID:  <200606141023.51185.jhb@freebsd.org>
In-Reply-To: <448FC3AF.9060606@bulinfo.net>
References:  <448FC3AF.9060606@bulinfo.net>

index | next in thread | previous in thread | raw e-mail

On Wednesday 14 June 2006 04:07, Krassimir Slavchev wrote:
> Hello,
> 
> This simple code demonstrates the problem:
> 
> int main ()
> {
>     char* buffer1;
>     char* buffer2;
>     int size = 2*1024*1024 + 1;
> 
> for(;;) {
>         buffer1 = (char *) malloc(size);
>         buffer2 = (char *) malloc(size);
> 
>         free(buffer1);
>         free(buffer2);
>  }
> }
> 
> The second free() does not free allocated memory if size >2Mb.
> 
> On 6.1-STABLE all is OK.

This is probably an issue with jemalloc, I've cc'd jasone@ who wrote the
new malloc() in HEAD.

-- 
John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve"  =  http://www.FreeBSD.org


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606141023.51185.jhb>