Merge from vendor branch DIFFUTILS:
[dragonfly.git] / contrib / top / machine.h
1 /*
2  * $FreeBSD: src/contrib/top/machine.h,v 1.4.6.1 2002/08/11 17:09:25 dwmalone Exp $
3  * $DragonFly: src/contrib/top/machine.h,v 1.2 2003/06/17 04:24:07 dillon Exp $
4  */
5
6 /*
7  *  This file defines the interface between top and the machine-dependent
8  *  module.  It is NOT machine dependent and should not need to be changed
9  *  for any specific machine.
10  */
11
12 /*
13  * the statics struct is filled in by machine_init
14  */
15 struct statics
16 {
17     char **procstate_names;
18     char **cpustate_names;
19     char **memory_names;
20     char **swap_names;
21 #ifdef ORDER
22     char **order_names;
23 #endif
24 };
25
26 /*
27  * the system_info struct is filled in by a machine dependent routine.
28  */
29
30 #ifdef p_active     /* uw7 define macro p_active */
31 #define P_ACTIVE p_pactive
32 #else
33 #define P_ACTIVE p_active
34 #endif
35
36 struct system_info
37 {
38     int    last_pid;
39     double load_avg[NUM_AVERAGES];
40     int    p_total;
41     int    P_ACTIVE;     /* number of procs considered "active" */
42     int    *procstates;
43     int    *cpustates;
44     int    *memory;
45     int    *swap;
46     struct timeval boottime;
47 };
48
49 /* cpu_states is an array of percentages * 10.  For example, 
50    the (integer) value 105 is 10.5% (or .105).
51  */
52
53 /*
54  * the process_select struct tells get_process_info what processes we
55  * are interested in seeing
56  */
57
58 struct process_select
59 {
60     int idle;           /* show idle processes */
61     int self;           /* show self */
62     int system;         /* show system processes */
63     int uid;            /* only this uid (unless uid == -1) */
64     char *command;      /* only this command (unless == NULL) */
65 };
66
67 /* routines defined by the machine dependent module */
68
69 char *format_header();
70 char *format_next_process();
71
72 /* non-int routines typically used by the machine dependent module */
73 char *printable();