[STATUS] (httpd-2.0) Wed Dec 26 23:45:08 EST 2001

2001-12-26 Thread Rodent of Unusual Size
APACHE 2.0 STATUS: -*-text-*- Last modified at [$Date: 2001/12/26 13:20:02 $] Release: 2.0.30 : In development 2.0.29 : tagged November 27, 2001 2.0.28 : released November 13, 2001 2.0.27 : rolled November 6, 2001 2.0.26 : tag

[STATUS] (apache-1.3) Wed Dec 26 23:45:04 EST 2001

2001-12-26 Thread Rodent of Unusual Size
APACHE 1.3 STATUS: -*-text-*- Last modified at [$Date: 2001/12/18 15:31:57 $] Release: 1.3.22: Tagged Oct 8, 2001. Announced Oct 12, 2001. 1.3.21: Not released. (Pulled for htdocs/manual config mismatch. t/r Oct 5, 2001) 1.3.

Re: ap_error_log2stderr

2001-12-26 Thread Aaron Bannert
On Tue, Dec 18, 2001 at 02:33:43PM -0800, Aaron Bannert wrote: > Is ap_error_log2stderr in use any longer? Considering that I've received no feedback on this, and that I see nowhere in Apache where it is used, may I consider it deprecated? Is there a process for deprecating functions or can I jus

[PATCH] update apr_thread_exit's prototype and fix usage in worker

2001-12-26 Thread Aaron Bannert
On Wed, Dec 26, 2001 at 04:54:00AM -0800, Brian Pane wrote: > I'm seeing a segfault during child process shutdown with the > worker MPM on Solaris. It appears to happen because the worker > threads do this: > > static void *worker_thread(apr_thread_t *thd, void * dummy) > { >proc_info * ti =

Largefile support?

2001-12-26 Thread Justin Erenkrantz
jerenkrantz@kiwi% ls -l access_log -rw-r--r-- 1 jerenkrantz other2147484642 Dec 26 14:49 access_log Yes, I'm a slacker and I don't rotate my logs. This introduced an interesting problem though. When the server got rebooted, httpd refused to start since the file was over the 2GB limit: [

Report on Apache lock contention experiment

2001-12-26 Thread Sander Temme
Hello everyone, The report on the select()/accept() lock contention experiment that I conducted at the Open Source Development Lab last October is now online as PDF file at . I'll be happy to discuss any questions that may arise about this docume

Re: segfault in worker mpm due to thread return values on stack

2001-12-26 Thread dreid
>> I'm seeing a segfault during child process shutdown with the >> worker MPM on Solaris. It appears to happen because the worker >> threads do this: >> ... >> or: >> * add an apr_status_t to the apr_thread_t struct, and store the >>exit status there > > +1, and I have a patch to do this

Re: cvs commit: httpd-2.0 ROADMAP

2001-12-26 Thread Justin Erenkrantz
On Wed, Dec 26, 2001 at 05:54:38PM -, [EMAIL PROTECTED] wrote: > + David says: > +The style guide needs to be reviewed before this can be done. > +http://dev.apache.org/styleguide.html > +The current file is dated April 20th 1998! > +Also the file

Re: [PATCH] TPF changes for rotatelogs

2001-12-26 Thread Greg Ames
David McCreedy wrote: > > These two patches allow rotatelogs to function properly on TPF. > They are TPF-specific and will not affect other platforms. commmitted...thanks! Greg

Re: segfault in worker mpm due to thread return values on stack

2001-12-26 Thread Aaron Bannert
On Wed, Dec 26, 2001 at 04:54:00AM -0800, Brian Pane wrote: > I'm seeing a segfault during child process shutdown with the > worker MPM on Solaris. It appears to happen because the worker > threads do this: > > static void *worker_thread(apr_thread_t *thd, void * dummy) > { >proc_info * ti =

Re: related config directives

2001-12-26 Thread Greg Ames
Ryan Bloom wrote: > > On Sunday 23 December 2001 06:27 am, Jeff Trawick wrote: > > Greg Ames <[EMAIL PROTECTED]> writes: > > > > > ...are more painful to deal with than you might think, if the user is > > > allowed to code them in any order. > > > > another thing is that the user can code any num

Re: cvs commit: httpd-2.0/server vhost.c

2001-12-26 Thread Jeff Trawick
[EMAIL PROTECTED] writes: > trawick 01/12/26 07:51:08 > > Modified:.CHANGES >server vhost.c > Log: > Fix matching of vhosts by ip address so we find IPv4 > vhost address when target address is v4-mapped form of > that address. > +#if APR_HAVE_IPV6 >

Re: PR 7492

2001-12-26 Thread Jeff Trawick
"Don Hughes" <[EMAIL PROTECTED]> writes: > I converted a working Apache1.3 server to Apache2.0 on a SuSE Linux system > with IPV6 support. > > All httpd.conf address references are in IPV4 format, all log/status/error messages > show all addresses in IPV4 format. However, I had to use IPV6 ad

segfault in worker mpm due to thread return values on stack

2001-12-26 Thread Brian Pane
I'm seeing a segfault during child process shutdown with the worker MPM on Solaris. It appears to happen because the worker threads do this: static void *worker_thread(apr_thread_t *thd, void * dummy) { proc_info * ti = dummy; int process_slot = ti->pid; int thread_slot = ti->tid;