Removing APR_IMPLEMENT_ACCESSOR_X

2002-03-20 Thread Sander Striker
Hi, We are not using APR_IMPLEMENT_ACCESSOR_X anywhere in the code anymore. Do we want to get rid of it? Sander

Re: Removing APR_IMPLEMENT_ACCESSOR_X

2002-03-20 Thread Justin Erenkrantz
On Wed, Mar 20, 2002 at 10:09:26AM +0100, Sander Striker wrote: Hi, We are not using APR_IMPLEMENT_ACCESSOR_X anywhere in the code anymore. Do we want to get rid of it? Sure. -- justin

APR_LOCK_DEFAULT ordering

2002-03-20 Thread Jim Jagielski
Are people happy with the priority order of the accept mutex? Right now it's flock - sysvsem - fcntl - pthread. I think it should be pthread - sysvsem - fcntl - flock, which is what 1.3 has... -- === Jim Jagielski [|]

Re: APR_LOCK_DEFAULT ordering

2002-03-20 Thread Aaron Bannert
On Wed, Mar 20, 2002 at 12:49:32PM -0500, Jim Jagielski wrote: Are people happy with the priority order of the accept mutex? Right now it's flock - sysvsem - fcntl - pthread. I think it should be pthread - sysvsem - fcntl - flock, which is what 1.3 has... Now that we're more confident in

Re: APR_LOCK_DEFAULT ordering

2002-03-20 Thread Justin Erenkrantz
On Wed, Mar 20, 2002 at 12:49:32PM -0500, Jim Jagielski wrote: I think it should be pthread - sysvsem - fcntl - flock, which is what 1.3 has... +1. -- justin

Re: APR_LOCK_DEFAULT ordering

2002-03-20 Thread Jeff Trawick
Jim Jagielski [EMAIL PROTECTED] writes: Are people happy with the priority order of the accept mutex? Right now it's flock - sysvsem - fcntl - pthread. I think it should be pthread - sysvsem - fcntl - flock, which is what 1.3 has... I realize everybody has jumped in and +1-ed you, but I

Re: APR_LOCK_DEFAULT ordering

2002-03-20 Thread Jim Jagielski
Jeff Trawick wrote: Jim Jagielski [EMAIL PROTECTED] writes: Are people happy with the priority order of the accept mutex? Right now it's flock - sysvsem - fcntl - pthread. I think it should be pthread - sysvsem - fcntl - flock, which is what 1.3 has... I realize everybody has

Re: APR_LOCK_DEFAULT ordering

2002-03-20 Thread Jeff Trawick
Jim Jagielski [EMAIL PROTECTED] writes: Jeff Trawick wrote: Jim Jagielski [EMAIL PROTECTED] writes: Are people happy with the priority order of the accept mutex? Right now it's flock - sysvsem - fcntl - pthread. I think it should be pthread - sysvsem - fcntl - flock, which

Re: APR_LOCK_DEFAULT ordering

2002-03-20 Thread Jim Jagielski
Jeff Trawick wrote: But proc_mutex.c has the below: case APR_LOCK_DEFAULT: #if APR_USE_FLOCK_SERIALIZE new_mutex-inter_meth = apr_proc_mutex_unix_flock_methods; #elif APR_USE_SYSVSEM_SERIALIZE new_mutex-inter_meth =