summaryrefslogtreecommitdiffstats
path: root/osdep-freebsd.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-07 19:24:50 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-07 19:24:50 +0000
commitf53bcc87980c4a7dc85e62673c46ce67bb01de47 (patch)
treed6745d0f774c1d9fe65fa0804302e69288173437 /osdep-freebsd.c
parent1d3fba86a3561c93cfbb42137c89fa85c65b0f2b (diff)
Even better.
Diffstat (limited to 'osdep-freebsd.c')
-rw-r--r--osdep-freebsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep-freebsd.c b/osdep-freebsd.c
index c7864e4b..66a9e48f 100644
--- a/osdep-freebsd.c
+++ b/osdep-freebsd.c
@@ -1,4 +1,4 @@
-/* $Id: osdep-freebsd.c,v 1.5 2009-02-07 19:16:25 nicm Exp $ */
+/* $Id: osdep-freebsd.c,v 1.6 2009-02-07 19:24:50 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -39,7 +39,7 @@ char *get_proc_argv0(pid_t);
#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)
+ ((p)->ki_stat == SSTOP || (p)->ki_stat == SZOMB)
char *
get_argv0(__attribute__ ((unused)) int fd, char *tty)