Re: cvs commit: apr/dso/unix dso.c

2002-05-02 Thread Jim Jagielski
[EMAIL PROTECTED] wrote: wsanchez02/05/01 15:50:45 Modified:dso/unix dso.c Log: Or'ing NSLINKMODULE_OPTION_NONE is verbose. But still valid and makes the setting explicit. Plus, I think the below is wrong (handle vs os_handle) Darwin comment is true on all platforms.

[STATUS] (apr) Wed May 1 23:45:12 EDT 2002

2002-05-02 Thread Rodent of Unusual Size
APACHE PORTABLE RUNTIME (APR) LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2002/05/01 23:42:33 $] Release: 2.0a9 : released December 12, 2000 2.0a8 : released November 20, 2000 2.0a7 : released October 8, 2000 2.0a6 : released August 18, 2000

[PATCH] optimization for APR sprintf functions

2002-05-02 Thread Brian Pane
The strncmp() call used to detect quad formatting directives accounts for about 10% of the execution time of the apr_*printf() functions. The static string used in the comparison typically is only one or two characters long, so calling a strcmp function is a very heavyweight way to do the

RE: apr and pools

2002-05-02 Thread Dagfinn Aarvaag
Hi, we think we found some problems with the definition of the macros in the errno.h file as you can see below. The extra ) ends the macro and leavs out the last line that also was ment to be included. We are also trying to check for a socket timeout. How should this be done? Currently we got

RE: apr and pools

2002-05-02 Thread Cliff Woolley
On Thu, 2 May 2002, Dagfinn Aarvaag wrote: we think we found some problems with the definition of the macros in the errno.h file as you can see below. The extra ) ends the macro and leavs out the last line that also was ment to be included. Right you are... change committed. Thanks!