[STATUS] (flood) Wed Jan 22 23:46:17 EST 2003

2003-01-23 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 Jan 22 23:46:19 EST 2003

2003-01-23 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/

gettimeofday calls

2003-01-23 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
Hi, The following is the tusc output of httpd (2.0.43) + mod_specweb99.c on HP-UX.. Almost every single request has a gettimeofday system call - is there any way to avoid it ?. I haven't searched the archives if this question has already been asked several times - so, please excuse me here.

Re: [PATCH] Style police for mod_specweb99.c

2003-01-23 Thread Greg Ames
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: Okay.. Here it comes (with the changes suggested by Greg), and a couple more fixes that I'd overseen earlier. Madhu, Could you take a look at what's in CVS now and see if there are changes that should be made to that? I'm sorry if you missed my post

Re: gettimeofday calls

2003-01-23 Thread Greg Ames
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: The following is the tusc output of httpd (2.0.43) + mod_specweb99.c on HP-UX.. Almost every single request has a gettimeofday system call - is there any way to avoid it ?. The GET /file_set/* requests are just plain ol' static files served by the h

RE: gettimeofday calls

2003-01-23 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
I don't know if this has been discussed already, but I was thinking of the following alternatives : 1. how about the listener thread in each of the child process keeps updating a global time variable that each of the threads can refer to ?. 2. set the time at the begining of the process, and then

Re: gettimeofday calls

2003-01-23 Thread David Hill
I would think that using the http request time would meet the spec and be easier than your alternatives... Dave - Original Message - From: "MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 23, 2003 4:05 PM Subject: RE: gettimeo

RE: gettimeofday calls

2003-01-23 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
I tried that, and I got back error from specweb99 stating that the responses were not conforming. (or something like that).. Now, I have a global time variable, that I set once in specweb99_quick_handler(), and the other two instances, try to use it, rather than compute again.. The third time() -