Re[2]: Freeing individual memory allocations allocated by apr_pcalloc()

2005-06-21 Thread David McIver
Tuesday, June 21, 2005 at 10:39:39 PM, Jeff typed: JT> On 6/21/05, Steve doh <[EMAIL PROTECTED]> wrote: >> I have a heavily used linked list of memory objects allocated using >> apr_pcalloc(). JT> ... >> How do I free the memory for a single object in this list after it has been >> unlinked from t

Re: Freeing individual memory allocations allocated by apr_pcalloc()

2005-06-21 Thread Jeff Trawick
On 6/21/05, Steve doh <[EMAIL PROTECTED]> wrote: > I have a heavily used linked list of memory objects allocated using > apr_pcalloc(). ... > How do I free the memory for a single object in this list after it has been > unlinked from the list? you can't > I can see that not freeing the unlinked o

Freeing individual memory allocations allocated by apr_pcalloc()

2005-06-20 Thread Steve doh
Hi, I have a heavily used linked list of memory objects allocated using apr_pcalloc(). I have created a specific apr_pool just for this list. How do I free the memory for a single object in this list after it has been unlinked from the list? I would normally use the apr_pool_destroy() function