4 * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/param.h>
22 #include <sys/sysctl.h>
30 #define is_runnable(p) \
31 ((p)->p_stat == LSRUN || (p)->p_stat == SIDL)
32 #define is_stopped(p) \
33 ((p)->p_stat == SSTOP || (p)->p_stat == SZOMB)
35 struct kinfo_proc2
*cmp_procs(struct kinfo_proc2
*, struct kinfo_proc2
*);
36 char *osdep_get_name(int, char *);
37 char *osdep_get_cwd(int);
38 struct event_base
*osdep_event_init(void);
41 cmp_procs(struct kinfo_proc2
*p1
, struct kinfo_proc2
*p2
)
43 if (is_runnable(p1
) && !is_runnable(p2
))
45 if (!is_runnable(p1
) && is_runnable(p2
))
48 if (is_stopped(p1
) && !is_stopped(p2
))
50 if (!is_stopped(p1
) && is_stopped(p2
))
53 if (p1
->p_estcpu
> p2
->p_estcpu
)
55 if (p1
->p_estcpu
< p2
->p_estcpu
)
58 if (p1
->p_slptime
< p2
->p_slptime
)
60 if (p1
->p_slptime
> p2
->p_slptime
)
63 if (p1
->p_pid
> p2
->p_pid
)
69 osdep_get_name(int fd
, __unused
char *tty
)
74 struct kinfo_proc2
*buf
, *newbuf
, *bestp
;
77 if (stat(tty
, &sb
) == -1)
79 if ((mib
[3] = tcgetpgrp(fd
)) == -1)
86 mib
[2] = KERN_PROC_PGRP
;
87 mib
[4] = sizeof (*buf
);
91 if (sysctl(mib
, __arraycount(mib
), NULL
, &len
, NULL
, 0) == -1)
94 if ((newbuf
= realloc(buf
, len
* sizeof (*buf
))) == NULL
)
98 mib
[5] = len
/ sizeof(*buf
);
99 if (sysctl(mib
, __arraycount(mib
), buf
, &len
, NULL
, 0) == -1) {
101 goto retry
; /* possible infinite loop? */
106 for (i
= 0; i
< len
/ sizeof (*buf
); i
++) {
107 if (buf
[i
].p_tdev
!= sb
.st_rdev
)
112 bestp
= cmp_procs(&buf
[i
], bestp
);
117 name
= strdup(bestp
->p_comm
);
128 osdep_get_cwd(int fd
)
134 osdep_event_init(void)
136 return (event_init());