[STATUS] (flood) Wed Dec 11 23:46:08 EST 2002

2002-12-12 Thread Rodent of Unusual Size
flood STATUS: -*-text-*- Last modified at [$Date: 2002/09/06 10:24:42 $] Release: 1.0: Released July 23, 2002 milestone-03: Tagged January 16, 2002 ASF-transfer: Released July 17, 2001 milestone-02: Tagged August 13, 2

[STATUS] (perl-framework) Wed Dec 11 23:46:10 EST 2002

2002-12-12 Thread Rodent of Unusual Size
httpd-test/perl-framework STATUS: -*-text-*- Last modified at [$Date: 2002/03/09 05:22:48 $] Stuff to do: * finish the t/TEST exit code issue (ORed with 0x2C if framework failed) * change existing tests that frob the DocumentRoot (e.g., t/modules/

Re: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread Greg Ames
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: I started seeing the following errors in the specweb99 run output, when I use mod_specweb99.c with Apache 2.0.43 and worker MPM. The following patch seems to get rid of the problem. If you're thinking that it may degrade the response - I did not find

Re: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread Greg Ames
Sander Temme wrote: I started seeing the following errors in the specweb99 run output, when I use mod_specweb99.c with Apache 2.0.43 and worker MPM. The following patch seems to get rid of the problem. If you're thinking that it may degrade the response - I did not find much difference though. Can

RE: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
same on HP-UX also.. This is how it looks : /* Cross process serialization techniques */ /* #undef USE_FLOCK_SERIALIZE */ #define USE_SYSVSEM_SERIALIZE 1 /* #undef USE_FCNTL_SERIALIZE */ /* #undef USE_PROC_PTHREAD_SERIALIZE */ /* #undef USE_PTHREAD_SERIALIZE */ /* #undef POSIXSEM_IS_GLOBAL */ /*

RE: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
>-Original Message- >From: Greg Ames [mailto:[EMAIL PROTECTED] [SNIP] >I dug into APR locks a little bit. The apr_global_mutex_* >functions turn into >two separate syscalls, with #if APR_HAS_THREADS around the >thread mutexing. So >unfortunately they wouldn't save us any syscalls :-

Re: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread Greg Ames
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: same on HP-UX also.. This is how it looks : /* Cross process serialization techniques */ /* #undef USE_FLOCK_SERIALIZE */ #define USE_SYSVSEM_SERIALIZE 1 /* #undef USE_FCNTL_SERIALIZE */ /* #undef USE_PROC_PTHREAD_SERIALIZE */ /* #undef USE_PTHREAD_SE

Re: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread Greg Ames
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: -Original Message- From: Greg Ames [mailto:[EMAIL PROTECTED] [SNIP] I dug into APR locks a little bit. The apr_global_mutex_* functions turn into two separate syscalls, with #if APR_HAS_THREADS around the thread mutexing. So unfortunate