From: wessels <> Date: Sat, 3 Jan 1998 02:27:01 +0000 (+0000) Subject: fake rusage needs ru_utime X-Git-Tag: SQUID_3_0_PRE1~4286 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f328706339449b902919521d31804989ce7a37e;p=thirdparty%2Fsquid.git fake rusage needs ru_utime --- diff --git a/src/squid.h b/src/squid.h index e6ae562d4d..d981fd78a0 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.148 1998/01/02 18:04:30 wessels Exp $ + * $Id: squid.h,v 1.149 1998/01/02 19:27:01 wessels Exp $ * * AUTHOR: Duane Wessels * @@ -225,11 +225,12 @@ * source code cleaner, so we don't need lots of #ifdefs in other * places */ -typedef struct { +struct rusage { struct timeval ru_stime; + struct timeval ru_utime; int ru_maxrss; int ru_majflt; -} rusage; +}; #endif #if !defined(HAVE_GETPAGESIZE) && defined(_SQUID_HPUX_)