William A. Rowe, Jr. wrote:
Mladen; are you sure you weren't looking for 'long long',
al la int64_t? Falling over to the FPU is rarely the best
performance decision.
A little more coding is needed, because I have a related error (on ReliantUnix):
+++
/home/apache20/apache20/build/libtool --silent --mode=compile cc
-I/home/apache20/apache20/include -g -DUSE_APACHE_MD5 -I ../common -I /include
-I /include/unix -DSVR4 -g -DHAVE_APR -I/home/apache20/apache20/include
-I/home/apache20/apache20/include -g -g -DSVR4 -c ../common/jk_ajp14.c
../common/jk_md5.h 65: [error]: CFE1020 identifier "uint32_t" is undefined
typedef uint32_t JK_UINT4;
^
+++
I am going to add in configure some code to check for long long and
sizeof(short/int/long).
Bill
At 02:55 AM 6/13/2005, [EMAIL PROTECTED] wrote:
mturk 2005/06/13 00:55:51
Modified: jk/native/common jk_lb_worker.c jk_shm.h jk_status.c
Log:
Use double instead size_t for trensferred/read, so that lb doesn't
break on trnasferred mode when 2G of data has been send/read.
- size_t mytraffic = 0;
- size_t curmin = 0;
+ double mytraffic = 0;
+ double curmin = 0;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]