summaryrefslogtreecommitdiffstats
path: root/osdep-freebsd.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-07 19:33:07 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-07 19:33:07 +0000
commit1583b87ae607ab7162a24c7f67091fccc487c1c7 (patch)
treefdbe22a06908b2a9d531e8796bb63390088b76a2 /osdep-freebsd.c
parent523b2e863f09ebf9462790d81882d94846829f55 (diff)
And again.
Diffstat (limited to 'osdep-freebsd.c')
-rw-r--r--osdep-freebsd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/osdep-freebsd.c b/osdep-freebsd.c
index 556235e6..ef456422 100644
--- a/osdep-freebsd.c
+++ b/osdep-freebsd.c
@@ -1,4 +1,4 @@
-/* $Id: osdep-freebsd.c,v 1.7 2009-02-07 19:27:11 nicm Exp $ */
+/* $Id: osdep-freebsd.c,v 1.8 2009-02-07 19:33:07 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -22,7 +22,6 @@
#include <sys/proc.h>
#include <sys/stat.h>
#include <sys/sysctl.h>
-#include <sys/time.h>
#include <sys/user.h>
#include <err.h>
@@ -92,8 +91,7 @@ retry:
bestp = p;
if (p->ki_slptime < bestp->ki_slptime)
bestp = p;
- if (timercmp(&p->ki_rusage_ch, &bestp->ki_rusage_ch, <))
- bestp = p;
+ /* XXX children? */
}
if (bestp != NULL) {
procname = get_proc_argv0(bestp->ki_pid);