aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/top/machine.c
diff options
context:
space:
mode:
authorEitan Adler <eadler@FreeBSD.org>2018-06-04 04:59:32 +0000
committerEitan Adler <eadler@FreeBSD.org>2018-06-04 04:59:32 +0000
commit8d0d26767b5606a7c65dc22daba9bf48a2ebd2b1 (patch)
treeedc830304b2f0e71396d356b7fa19246762a9b21 /usr.bin/top/machine.c
parent5dc98aeeaadaaf2c0c544003ea2fc832f4091765 (diff)
downloadsrc-8d0d26767b5606a7c65dc22daba9bf48a2ebd2b1.tar.gz
src-8d0d26767b5606a7c65dc22daba9bf48a2ebd2b1.zip
top(1): include what you use
- Change headers to more closely match what we use - use more standard functions instead of bzero, bcmp, bcopy - Add myself to authors. Tested with: base clang (amd64), gcc 9 (amd64), base clang (i386), base gcc (mips)
Notes
Notes: svn path=/head/; revision=334600
Diffstat (limited to 'usr.bin/top/machine.c')
-rw-r--r--usr.bin/top/machine.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/usr.bin/top/machine.c b/usr.bin/top/machine.c
index 4d7ff95ebfb1..f5b8dfac0245 100644
--- a/usr.bin/top/machine.c
+++ b/usr.bin/top/machine.c
@@ -8,37 +8,35 @@
* by Monte Mitzelfelt (for latest top see http://www.groupsys.com/topinfo/)
*
* AUTHOR: Christos Zoulas <christos@ee.cornell.edu>
- * Steven Wallace <swallace@freebsd.org>
+ * Steven Wallace <swallace@FreeBSD.org>
* Wolfram Schneider <wosch@FreeBSD.org>
* Thomas Moestl <tmoestl@gmx.net>
+ * Eitan Adler <eadler@FreeBSD.org>
*
* $FreeBSD$
*/
#include <sys/errno.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
#include <sys/param.h>
+#include <sys/priority.h>
#include <sys/proc.h>
#include <sys/resource.h>
-#include <sys/rtprio.h>
-#include <sys/signal.h>
#include <sys/sysctl.h>
#include <sys/time.h>
#include <sys/user.h>
-#include <sys/vmmeter.h>
#include <assert.h>
#include <err.h>
#include <kvm.h>
#include <math.h>
-#include <nlist.h>
#include <paths.h>
-#include <pwd.h>
#include <stdio.h>
#include <stdbool.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
-#include <strings.h>
+#include <time.h>
#include <unistd.h>
#include <vis.h>
@@ -86,8 +84,6 @@ struct handle {
#define PCTCPU(pp) (pcpu[pp - pbase])
-/* definitions for indices in the nlist array */
-
/*
* These definitions control the format of the per-process area
*/
@@ -647,7 +643,7 @@ get_old_proc(struct kinfo_proc *pp)
return (NULL);
}
oldp = *oldpp;
- if (bcmp(&oldp->ki_start, &pp->ki_start, sizeof(pp->ki_start)) != 0) {
+ if (memcmp(&oldp->ki_start, &pp->ki_start, sizeof(pp->ki_start)) != 0) {
pp->ki_udata = NOPROC;
return (NULL);
}
@@ -669,7 +665,7 @@ get_io_stats(const struct kinfo_proc *pp, long *inp, long *oup, long *flp,
oldp = get_old_proc(pp);
if (oldp == NULL) {
- bzero(&dummy, sizeof(dummy));
+ memset(&dummy, 0, sizeof(dummy));
oldp = &dummy;
}
*inp = RU(pp)->ru_inblock - RU(oldp)->ru_inblock;