Deleted Added
full compact
machine.h (168799) machine.h (169257)
1/*
1/*
2 * $FreeBSD: head/contrib/top/machine.h 168799 2007-04-17 03:12:39Z rafan $
2 * $FreeBSD: head/contrib/top/machine.h 169257 2007-05-04 15:42:58Z rafan $
3 */
4
5/*
6 * This file defines the interface between top and the machine-dependent
7 * module. It is NOT machine dependent and should not need to be changed
8 * for any specific machine.
9 */
10

--- 46 unchanged lines hidden (view full) ---

57struct process_select
58{
59 int idle; /* show idle processes */
60 int self; /* show self */
61 int system; /* show system processes */
62 int thread; /* show threads */
63 int uid; /* only this uid (unless uid == -1) */
64 int wcpu; /* show weighted cpu */
3 */
4
5/*
6 * This file defines the interface between top and the machine-dependent
7 * module. It is NOT machine dependent and should not need to be changed
8 * for any specific machine.
9 */
10

--- 46 unchanged lines hidden (view full) ---

57struct process_select
58{
59 int idle; /* show idle processes */
60 int self; /* show self */
61 int system; /* show system processes */
62 int thread; /* show threads */
63 int uid; /* only this uid (unless uid == -1) */
64 int wcpu; /* show weighted cpu */
65 int jail; /* show jail id */
65 int jail; /* show jail ID */
66 char *command; /* only this command (unless == NULL) */
67};
68
69/* routines defined by the machine dependent module */
70
71char *format_header();
72char *format_next_process();
73
74/* non-int routines typically used by the machine dependent module */
75char *printable();
66 char *command; /* only this command (unless == NULL) */
67};
68
69/* routines defined by the machine dependent module */
70
71char *format_header();
72char *format_next_process();
73
74/* non-int routines typically used by the machine dependent module */
75char *printable();