]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
fake rusage needs ru_utime
authorwessels <>
Sat, 3 Jan 1998 02:27:01 +0000 (02:27 +0000)
committerwessels <>
Sat, 3 Jan 1998 02:27:01 +0000 (02:27 +0000)
src/squid.h

index e6ae562d4daf282b3ace68397c1f69e6389b7771..d981fd78a0e829dc98691d566d6ecd40b08763ba 100644 (file)
@@ -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
  *
  * 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_)