delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2000/06/23/09:37:51

Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe AT sourceware DOT cygnus DOT com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin AT sourceware DOT cygnus DOT com>
List-Help: <mailto:cygwin-help AT sourceware DOT cygnus DOT com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner AT sourceware DOT cygnus DOT com
Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com
Message-ID: <47D5B138DD8DD311B95100902787500E16EF72@cervin.grenoble.cstb.fr>
From: NOE Nicolas <n DOT noe AT cstb DOT fr>
To: "Cygwin (Adresse de messagerie)" <cygwin AT sourceware DOT cygnus DOT com>
Subject: RE: cygwin & NT memory allocation limit ?
Date: Fri, 23 Jun 2000 15:31:56 +0200
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2448.0)

Hi again,

>Hello,
>
>I'm using cygwin & gcc on a 512 Mb PC running NT, and
>it seems that I cannot allocate more than (roughly)
>128 MegaBytes of total memory (either with a single 
>malloc call, or with lots of them). Is there's a memory 
>allocation limit in cygwin & gcc or am I missing something ? 
>
>(the same program works fine with Watcom C, and I'm using
>cygwin latest release)
>
>Thanks in advance if anyone can help !
>
>Nicolas

I can't fully answer my question, but I've found a way to malloc
more than 128 Mb. I've read than cygwin uses Doug Lea's malloc
(http://gee.cs.oswego.edu/pub/misc/malloc.c), and I've compiled 
it and linked it with my programs, and then, it works. 

For instance, the following program fails if compiled with gcc, 
and works when linked with Doug Lea's malloc.

#include <stdlib.h>
#include <assert.h>

int main(void)
{
	void	*p = malloc(128 * 1024 * 1024);
	assert(p);
	return 0;
}

Using that other malloc solves my problem, but I'd still like to
know if it's something wrong with my system or a problem with gcc.

Nicolas

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019