summaryrefslogtreecommitdiffstats
path: root/osdep-freebsd.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-07 19:16:25 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-07 19:16:25 +0000
commit1d3fba86a3561c93cfbb42137c89fa85c65b0f2b (patch)
tree4bdd8dc67948b75cdf31b7e67dea46ecdc05de00 /osdep-freebsd.c
parent69ebc15808d999599cc8d17feb0402d0ebf4ddd4 (diff)
Make process name guessing pick up SSTOP.
Diffstat (limited to 'osdep-freebsd.c')
-rw-r--r--osdep-freebsd.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/osdep-freebsd.c b/osdep-freebsd.c
index 1795058a..c7864e4b 100644
--- a/osdep-freebsd.c
+++ b/osdep-freebsd.c
@@ -1,4 +1,4 @@
-/* $Id: osdep-freebsd.c,v 1.4 2009-01-27 23:10:18 nicm Exp $ */
+/* $Id: osdep-freebsd.c,v 1.5 2009-02-07 19:16:25 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -36,6 +36,11 @@ char *get_proc_argv0(pid_t);
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
+#define is_runnable(p) \
+ ((p)->ki_stat == SRUN || (p)->ki_stat == SIDL)
+#define is_stopped(p) \
+ ((p)->ki_stat == SSTOP || (p)->ki_stat == SZOMB || (p)->ki_stat == SDEAD)
+
char *
get_argv0(__attribute__ ((unused)) int fd, char *tty)
{
@@ -78,8 +83,11 @@ retry:
if (bestp == NULL)
bestp = p;
- if (p->ki_stat != SRUN && p->ki_stat != SIDL)
- continue;
+ if (is_runnable(p) && !is_runnable(bestp))
+ bestp = p;
+ if (!is_stopped(p) && is_stopped(bestp))
+ bestp = p;
+
if (p->ki_estcpu < bestp->ki_estcpu)
continue;
if (p->ki_slptime > bestp->ki_slptime)