1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00

Sync OpenBSD patchset 182:

Go to the next if the current best process is replaced, don't keep comparing
it with itself. Also fix process name comparison.
This commit is contained in:
Tiago Cunha 2009-07-28 22:26:13 +00:00
parent a3fc9dee32
commit 6043d9cf89

View File

@ -1,4 +1,4 @@
/* $Id: osdep-openbsd.c,v 1.16 2009-06-26 15:31:15 nicm Exp $ */ /* $Id: osdep-openbsd.c,v 1.17 2009-07-28 22:26:13 tcunha Exp $ */
/* /*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -82,41 +82,48 @@ retry:
continue; continue;
} }
if (is_runnable(p) && !is_runnable(bestp)) if (is_runnable(p) && !is_runnable(bestp)) {
bestp = p; bestp = p;
else if (!is_runnable(p) && is_runnable(bestp)) continue;
} else if (!is_runnable(p) && is_runnable(bestp))
continue; continue;
if (!is_stopped(p) && is_stopped(bestp)) if (!is_stopped(p) && is_stopped(bestp)) {
bestp = p; bestp = p;
else if (is_stopped(p) && !is_stopped(bestp)) continue;
} else if (is_stopped(p) && !is_stopped(bestp))
continue; continue;
if (p->p_estcpu > bestp->p_estcpu) if (p->p_estcpu > bestp->p_estcpu) {
bestp = p; bestp = p;
else if (p->p_estcpu < bestp->p_estcpu) continue;
} else if (p->p_estcpu < bestp->p_estcpu)
continue; continue;
if (p->p_slptime < bestp->p_slptime) if (p->p_slptime < bestp->p_slptime) {
bestp = p; bestp = p;
else if (p->p_slptime > bestp->p_slptime) continue;
} else if (p->p_slptime > bestp->p_slptime)
continue; continue;
if (p->p_flag & P_SINTR && !(bestp->p_flag & P_SINTR)) if (p->p_flag & P_SINTR && !(bestp->p_flag & P_SINTR)) {
bestp = p; bestp = p;
else if (!(p->p_flag & P_SINTR) && bestp->p_flag & P_SINTR) continue;
} else if (!(p->p_flag & P_SINTR) && bestp->p_flag & P_SINTR)
continue; continue;
if (LIST_FIRST(&p->p_children) == NULL && if (LIST_FIRST(&p->p_children) == NULL &&
LIST_FIRST(&bestp->p_children) != NULL) /* XXX ugh */ LIST_FIRST(&bestp->p_children) != NULL) { /* XXX ugh */
bestp = p; bestp = p;
else if (LIST_FIRST(&p->p_children) != NULL && continue;
} else if (LIST_FIRST(&p->p_children) != NULL &&
LIST_FIRST(&bestp->p_children) == NULL) LIST_FIRST(&bestp->p_children) == NULL)
continue; continue;
if (strcmp(p->p_comm, p->p_comm) < 0) if (strcmp(p->p_comm, bestp->p_comm) < 0) {
bestp = p; bestp = p;
else if (strcmp(p->p_comm, p->p_comm) > 0) continue;
} else if (strcmp(p->p_comm, bestp->p_comm) > 0)
continue; continue;
if (p->p_pid > bestp->p_pid) if (p->p_pid > bestp->p_pid)