summaryrefslogtreecommitdiffstats
path: root/osdep-netbsd.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-28 22:28:11 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-28 22:28:11 +0000
commit2dda19798023102cc6cd41a3641645d6eba78795 (patch)
tree481d2c98bf822da0a9f9cbaad306e64f76a6df9e /osdep-netbsd.c
parent6043d9cf89ab96a2bd4f8e910ea72243ef91e044 (diff)
Make similar changes to the OS-dependent code for FreeBSD, and NetBSD in
accordance to OpenBSD patchset 182.
Diffstat (limited to 'osdep-netbsd.c')
-rw-r--r--osdep-netbsd.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/osdep-netbsd.c b/osdep-netbsd.c
index ce1dffc7..cc211cb0 100644
--- a/osdep-netbsd.c
+++ b/osdep-netbsd.c
@@ -1,4 +1,4 @@
-/* $Id: osdep-netbsd.c,v 1.5 2009-07-15 17:53:15 nicm Exp $ */
+/* $Id: osdep-netbsd.c,v 1.6 2009-07-28 22:28:11 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -83,24 +83,28 @@ retry:
continue;
}
- if (is_runnable(p) && !is_runnable(bestp))
+ if (is_runnable(p) && !is_runnable(bestp)) {
bestp = p;
- else if (!is_runnable(p) && is_runnable(bestp))
+ continue;
+ } else if (!is_runnable(p) && is_runnable(bestp))
continue;
- if (!is_stopped(p) && is_stopped(bestp))
+ if (!is_stopped(p) && is_stopped(bestp)) {
bestp = p;
- else if (is_stopped(p) && !is_stopped(bestp))
+ continue;
+ } else if (is_stopped(p) && !is_stopped(bestp))
continue;
- if (p->p_estcpu > bestp->p_estcpu)
+ if (p->p_estcpu > bestp->p_estcpu) {
bestp = p;
- else if (p->p_estcpu < bestp->p_estcpu)
+ continue;
+ } else if (p->p_estcpu < bestp->p_estcpu)
continue;
- if (p->p_slptime < bestp->p_slptime)
+ if (p->p_slptime < bestp->p_slptime) {
bestp = p;
- else if (p->p_slptime > bestp->p_slptime)
+ continue;
+ } else if (p->p_slptime > bestp->p_slptime)
continue;
if (p->p_pid > bestp->p_pid)