]> git.pld-linux.org Git - packages/atop.git/commitdiff
- fix for different <sys/acct.h> on alpha
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 28 Aug 2002 12:40:07 +0000 (12:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    atop-acct-alpha.patch -> 1.1

atop-acct-alpha.patch [new file with mode: 0644]

diff --git a/atop-acct-alpha.patch b/atop-acct-alpha.patch
new file mode 100644 (file)
index 0000000..341b078
--- /dev/null
@@ -0,0 +1,52 @@
+--- atop-1.2/acctproc.c.orig   Thu Nov 29 13:06:58 2001
++++ atop-1.2/acctproc.c        Wed Aug 28 14:27:15 2002
+@@ -45,6 +45,7 @@
+ #include <sys/types.h>
+ #include <stdio.h>
++#include <string.h>
+ #include <fcntl.h>
+ #include <errno.h>
+ #include <unistd.h>
+@@ -64,7 +65,11 @@
+ static        uint    acctsize = 0;   /* previous size of account file          */
+ int                   acctfd   = -1;  /* fd of account file                     */
++#ifdef __alpha__
++static long   acctexp(time_t ct);
++#else
+ static long   acctexp(comp_t ct);
++#endif
+ /*
+ ** Semaphore-handling
+@@ -372,9 +377,14 @@
+               api->mem.rgrow  = 0;
+               api->mem.minflt = acctexp(acctrec.ac_minflt);
+               api->mem.majflt = acctexp(acctrec.ac_majflt);
++#ifdef __alpha
++              api->mem.iosw   = 0;
++              api->dsk.ior    = 0;
++#else
+               api->mem.iosw   = acctexp(acctrec.ac_swaps);
+-              api->mem.shtext = 0;
+               api->dsk.ior    = acctexp(acctrec.ac_rw);
++#endif
++              api->mem.shtext = 0;
+               api->dsk.iow    = 0;
+               api->net.tcpsnd = 0;
+               api->net.tcprcv = 0;
+@@ -392,8 +402,13 @@
+ /*
+ ** expand the special compression-method
+ */
++#ifdef __alpha
++long
++acctexp(time_t ct)
++#else
+ long
+ acctexp(comp_t ct)
++#endif
+ {
+         register long e;
+         register long f;
This page took 0.061115 seconds and 4 git commands to generate.