aboutsummaryrefslogtreecommitdiff
path: root/bin/ps/extern.h
diff options
context:
space:
mode:
authorGarance A Drosehn <gad@FreeBSD.org>2004-06-23 23:48:09 +0000
committerGarance A Drosehn <gad@FreeBSD.org>2004-06-23 23:48:09 +0000
commitbdf8ab4692a4f24cc321f4876f4d0c8b39dff4c9 (patch)
tree42f4c0ba023a1c380ef10b9c78d4a46eb691734d /bin/ps/extern.h
parent238b367c61fefba5ef076b80e83a50b5ff93276e (diff)
downloadsrc-bdf8ab4692a4f24cc321f4876f4d0c8b39dff4c9.tar.gz
src-bdf8ab4692a4f24cc321f4876f4d0c8b39dff4c9.zip
Change "struct varent" to use the standard queue(8) macros, instead of
using it's own version of the same basic algorithm. Submitted by: part by Cyrille Lefevre, part of it done by me
Notes
Notes: svn path=/head/; revision=130999
Diffstat (limited to 'bin/ps/extern.h')
-rw-r--r--bin/ps/extern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ps/extern.h b/bin/ps/extern.h
index 7e877f485624..08b6d9bce630 100644
--- a/bin/ps/extern.h
+++ b/bin/ps/extern.h
@@ -40,7 +40,7 @@ extern int cflag, eval, fscale, nlistread, rawcpu;
extern unsigned long mempages;
extern time_t now;
extern int sumrusage, termwidth, totwidth;
-extern VARENT *vhead;
+extern STAILQ_HEAD(velisthead, varent) varlist;
__BEGIN_DECLS
void arguments(KINFO *, VARENT *);