Ethereal-dev: Re: [ethereal-dev] Further thoughts on Per Frame state information

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <gharris@xxxxxxxxxxxx>
Date: Sat, 19 Feb 2000 15:47:08 -0800
> But, what do you do when you have exhausted the memory allocated with the
> g_mem_chunk call?

"g_mem_chunk_new()" doesn't allocate a single chunk of memory that's
used for all allocations, and that, when exhausted, leaves you unable to
allocate more memory; "area_size" is, to quote

	http://developer.gnome.org/doc/API/glib/glib-memory-chunks.html

"the size, in bytes, of *each* block of memory allocated to contain the
atoms" (emphasis mine).  New chunks are allocated as necessary.