Re: [PATCH] Make buildconf's libtool.m4 detection more robust

2004-01-08 Thread Joe Orton
Hi, On Mon, Jan 05, 2004 at 02:54:34AM -0800, Noah Misch wrote: > I'm building APR CVS HEAD on a recent (no more than three months old) Cygwin > binary installation. buildconf fails to find libtool.m4 because > /usr/bin/libtoolize is actually a shell script that applies some heuristics to > choos

FNM_PERIOD, etc...

2004-01-08 Thread Jim Jagielski
We're being sloppy with these... Shouldn't all FNM_* in httpd be using the APR versions? Just grepping for FNM_PERIOD... ./modules/generators/mod_autoindex.c: FNM_NOESCAPE | FNM_PERIOD) ./modules/generators/mod_autoindex.c: FNM_NOESCAP

RE: apr rmm

2004-01-08 Thread Somasundaram, Karthik (ISS Mountain View)
Matthieu/All: Thanks for the pointer, I am able to use rmm to store a link list in the shared memory in process A, but I am not clear on how I can access it on process B. In process B I can attach (apr_rmm_attach) but after that I am not sure how to get to my data. Am I missing something obvio

Re: Memory pools -- support for moving a sub-pool from one pool to an other

2004-01-08 Thread Sander Striker
On Thu, 2004-01-08 at 14:30, Ben Laurie wrote: > Dipak Patel wrote: > > We are considering the use of APR memory pool feature in our commercial > > product but I have not been too impressed with the support out there. > > Perhaps you should consider paying more for it, then. ROTFL. That's one w

Re: Memory pools -- support for moving a sub-pool from one pool t o an other

2004-01-08 Thread Ben Laurie
Sander Striker wrote: We actually have two functions in our code: moveTree(srcPool, dstPool) and moveItem(srcItem, dstPool). The moveItem() takes an allocated buffer and binds it as a child of the dstPool. I understand that this may have to be implemented by first allocating a buffer --say dstItem-

Re: Memory pools -- support for moving a sub-pool from one pool to an other

2004-01-08 Thread Ben Laurie
Dipak Patel wrote: This is the third time I'm asking this question. Can anyone please tell me how to use some built in feature of the apr memory pool module to move a sub-pool to under another pool? Our software makes use this type of feature to pass messages from on layer to another where each

RE: Memory pools -- support for moving a sub-pool from one pool t o an other

2004-01-08 Thread Sander Striker
On Thu, 2004-01-08 at 03:35, Dipak Patel wrote: > Sander and Cliff, > > Thank you for your feedback. > > My comment: > > >We are considering the use of APR memory pool feature in our commercial > product but I have >not been too impressed with the supportout there .. > > was based on not hear

[STATUS] (apr-util) Wed Jan 7 23:45:25 EST 2004

2004-01-08 Thread Rodent of Unusual Size
APRUTIL LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2003/03/31 05:32:43 $] Release: 0.9.3 : Tagged March 30, 2002 0.9.2 : Released March 22, 2002 (alpha) 0.9.1 : Released September 11, 2002 (alpha) 0.9.0 : Not released

[STATUS] (apr) Wed Jan 7 23:45:18 EST 2004

2004-01-08 Thread Rodent of Unusual Size
APACHE PORTABLE RUNTIME (APR) LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2003/11/21 10:42:03 $] Release: 0.9.3 : tagged March 30, 2003 0.9.2 : released March 22, 2003 0.9.1 : released September 11, 2002 0.9.0 : released August 28, 2002 2.0a9

RE: Memory pools -- support for moving a sub-pool from one pool t o an other

2004-01-08 Thread Dipak Patel
Sander and Cliff, Thank you for your feedback. My comment: >We are considering the use of APR memory pool feature in our commercial product but I have >not been too impressed with the supportout there .. was based on not hearing back from anyone since my first e-mail on this subject dated Dece

Re: Memory pools -- support for moving a sub-pool from one pool to an other

2004-01-08 Thread Sander Striker
On Thu, 2004-01-08 at 03:21, Sander Striker wrote: > On Thu, 2004-01-08 at 02:46, Dipak Patel wrote: > > This is the third time I'm asking this question. Can anyone please > > tell me how to use some built in feature of the apr memory pool module > > to move a sub-pool to under another pool? Our so

Re: Memory pools -- support for moving a sub-pool from one pool to an other

2004-01-08 Thread Cliff Woolley
On Thu, 8 Jan 2004, Sander Striker wrote: > Doable. Should be a fairly tiny patch to make this possible. It would > be a 'BEWARE! USE AT OWN RISK!' feature, since you are going to mess Hah, like I said, Sander's the man. :-)

Re: Memory pools -- support for moving a sub-pool from one pool to an other

2004-01-08 Thread Sander Striker
On Thu, 2004-01-08 at 02:46, Dipak Patel wrote: > This is the third time I'm asking this question. Can anyone please > tell me how to use some built in feature of the apr memory pool module > to move a sub-pool to under another pool? Our software makes use this > type of feature to pass messages fr

Re: Memory pools -- support for moving a sub-pool from one pool to an other

2004-01-08 Thread Cliff Woolley
On Wed, 7 Jan 2004, Dipak Patel wrote: > This is the third time I'm asking this question. Can anyone please tell me > how to use some built in feature of the apr memory pool module to move a > sub-pool to under another pool? Our software makes use this type of feature > to pass messages from on la

RE: apr rmm

2004-01-08 Thread Somasundaram, Karthik (ISS Mountain View)
Nick: I bumped into this a couple of days ago while reading this PDF file. http://www.clove.org/~aaron/presentations/apachecon2002/ac2002aaron.pdf (Search for RMM) Also, check this link out http://apr.apache.org/docs/apr-util/group__APR__Util__RMM.html Thanks karthik -Original Message-

Memory pools -- support for moving a sub-pool from one pool to an other

2004-01-08 Thread Dipak Patel
This is the third time I'm asking this question. Can anyone please tell me how to use some built in feature of the apr memory pool module to move a sub-pool to under another pool? Our software makes use this type of feature to pass messages fromĀ on layer to another where each layer has its o

Re: apr rmm

2004-01-08 Thread Nick Kew
On Wed, 7 Jan 2004, Somasundaram, Karthik (ISS Mountain View) wrote: > > Any of you have experience in using RMM(Relocatable Memory Module) to create link list and hash tables and access it across processes on Windows or Solaris environments. Not heard of that one, but that's something of a h

apr rmm

2004-01-08 Thread Somasundaram, Karthik (ISS Mountain View)
Any of you have experience in using RMM(Relocatable Memory Module) to create link list and hash tables and access it across processes on Windows or Solaris environments. I don't see much documentation on the web. Let me know. Thanks karthik