Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Date: Thu, 4 Jan 2001 13:44:13 -0500
From: Christopher Faylor <cgf@redhat.com>
To: "'cygwin@cygwin.com'" <cygwin@cygwin.com>
Subject: Re: Using large memory segments with a telnet session
Message-ID: <20010104134413.B21062@redhat.com>
Reply-To: cygwin@cygwin.com
Mail-Followup-To: "'cygwin@cygwin.com'" <cygwin@cygwin.com>
References: <C12E8508FB1BD211BDFD00A0C9C75B6102296C61@xcgal005.al.essd.northgrum.com> <3A549C9C.F93B5160@yahoo.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.11i
In-Reply-To: <3A549C9C.F93B5160@yahoo.com>; from earnie_boyd@yahoo.com on Thu, Jan 04, 2001 at 10:54:04AM -0500

On Thu, Jan 04, 2001 at 10:54:04AM -0500, Earnie Boyd wrote:
>> Any ideas?
>> 
>
>Using the source I find:
>
> /* Note that reserving a huge amount of heap space does not result in
> swapping since we are not committing it. */
> /* FIXME: We should not be restricted to a fixed size heap no matter
> what the fixed size is. */
>
> heap_chunk_in_mb = reg.get_int ("heap_chunk_in_mb", 128);
> if (heap_chunk_in_mb < 4)
>   {
>     heap_chunk_in_mb = 4;
>     reg.set_int ("heap_chunk_in_mb", heap_chunk_in_mb);
>   }
>
>So if your program isn't finding the registry key then the heap_chunk is
>4mb not 128mb.

The default size is 128MB if there is no registry entry but if someone
specifies less than 4MB, then default to 4MB.

That's what this code is saying.

cgf

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

