2002-01-24 17:58:42 +00:00
|
|
|
/*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
1997-03-23 18:51:21 +00:00
|
|
|
/*
|
|
|
|
* This file defines the interface between top and the machine-dependent
|
|
|
|
* module. It is NOT machine dependent and should not need to be changed
|
|
|
|
* for any specific machine.
|
|
|
|
*/
|
2016-05-22 04:17:00 +00:00
|
|
|
#ifndef MACHINE_H
|
|
|
|
#define MACHINE_H
|
|
|
|
|
|
|
|
#include "top.h"
|
1997-03-23 18:51:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* the statics struct is filled in by machine_init
|
|
|
|
*/
|
|
|
|
struct statics
|
|
|
|
{
|
|
|
|
char **procstate_names;
|
|
|
|
char **cpustate_names;
|
|
|
|
char **memory_names;
|
2012-06-27 18:08:48 +00:00
|
|
|
char **arc_names;
|
Add ZFS compressed ARC stats to top(1)
Provides:
amount of compressed data
logical size of compressed data (how much it would have taken uncompressed)
compression ratio (logical size : total ARC size)
Overhead (space consumed for compression headers)
Example output:
ARC: 31G Total, 18G MFU, 9067M MRU, 2236K Anon, 615M Header, 2947M Other
25G Compressed, 54G Uncompressed, 1.76:1 Ratio, 2265M Overhead
Reviewed by: jpaetzel, smh, imp, jhb (previous version)
MFC after: 2 week
Relnotes: yes
Sponsored by: ScaleEngine Inc.
Differential Revision: https://reviews.freebsd.org/D9829
2017-03-17 00:46:50 +00:00
|
|
|
char **carc_names;
|
1997-03-23 18:53:01 +00:00
|
|
|
char **swap_names;
|
1997-03-23 18:51:21 +00:00
|
|
|
char **order_names;
|
2008-01-18 01:43:14 +00:00
|
|
|
int ncpus;
|
1997-03-23 18:51:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the system_info struct is filled in by a machine dependent routine.
|
|
|
|
*/
|
|
|
|
|
2002-01-24 17:58:42 +00:00
|
|
|
#ifdef p_active /* uw7 define macro p_active */
|
|
|
|
#define P_ACTIVE p_pactive
|
|
|
|
#else
|
|
|
|
#define P_ACTIVE p_active
|
|
|
|
#endif
|
|
|
|
|
1997-03-23 18:51:21 +00:00
|
|
|
struct system_info
|
|
|
|
{
|
|
|
|
int last_pid;
|
|
|
|
double load_avg[NUM_AVERAGES];
|
|
|
|
int p_total;
|
2002-01-24 17:58:42 +00:00
|
|
|
int P_ACTIVE; /* number of procs considered "active" */
|
1997-03-23 18:51:21 +00:00
|
|
|
int *procstates;
|
|
|
|
int *cpustates;
|
|
|
|
int *memory;
|
2012-06-27 18:08:48 +00:00
|
|
|
int *arc;
|
Add ZFS compressed ARC stats to top(1)
Provides:
amount of compressed data
logical size of compressed data (how much it would have taken uncompressed)
compression ratio (logical size : total ARC size)
Overhead (space consumed for compression headers)
Example output:
ARC: 31G Total, 18G MFU, 9067M MRU, 2236K Anon, 615M Header, 2947M Other
25G Compressed, 54G Uncompressed, 1.76:1 Ratio, 2265M Overhead
Reviewed by: jpaetzel, smh, imp, jhb (previous version)
MFC after: 2 week
Relnotes: yes
Sponsored by: ScaleEngine Inc.
Differential Revision: https://reviews.freebsd.org/D9829
2017-03-17 00:46:50 +00:00
|
|
|
int *carc;
|
1997-03-23 18:53:01 +00:00
|
|
|
int *swap;
|
1999-01-09 20:25:02 +00:00
|
|
|
struct timeval boottime;
|
2008-01-18 01:43:14 +00:00
|
|
|
int ncpus;
|
1997-03-23 18:51:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* cpu_states is an array of percentages * 10. For example,
|
|
|
|
the (integer) value 105 is 10.5% (or .105).
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the process_select struct tells get_process_info what processes we
|
|
|
|
* are interested in seeing
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct process_select
|
|
|
|
{
|
|
|
|
int idle; /* show idle processes */
|
1998-08-04 14:10:48 +00:00
|
|
|
int self; /* show self */
|
1997-03-23 18:51:21 +00:00
|
|
|
int system; /* show system processes */
|
2003-07-17 23:56:40 +00:00
|
|
|
int thread; /* show threads */
|
2017-08-07 08:45:08 +00:00
|
|
|
#define TOP_MAX_UIDS 8
|
|
|
|
int uid[TOP_MAX_UIDS]; /* only these uids (unless uid[0] == -1) */
|
2005-05-18 13:30:08 +00:00
|
|
|
int wcpu; /* show weighted cpu */
|
2014-05-02 23:30:39 +00:00
|
|
|
int jid; /* only this jid (unless jid == -1) */
|
2007-05-04 15:42:58 +00:00
|
|
|
int jail; /* show jail ID */
|
2016-09-05 08:27:04 +00:00
|
|
|
int swap; /* show swap usage */
|
2011-05-31 15:11:23 +00:00
|
|
|
int kidle; /* show per-CPU idle threads */
|
1997-03-23 18:51:21 +00:00
|
|
|
char *command; /* only this command (unless == NULL) */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* routines defined by the machine dependent module */
|
|
|
|
|
2017-03-26 17:22:44 +00:00
|
|
|
char *format_header(char *uname_field);
|
|
|
|
char *format_next_process(caddr_t handle, char *(*get_userid)(int),
|
|
|
|
int flags);
|
2016-05-22 04:17:00 +00:00
|
|
|
void toggle_pcpustats(void);
|
|
|
|
void get_system_info(struct system_info *si);
|
2018-05-20 23:19:09 +00:00
|
|
|
int machine_init(struct statics *statics);
|
2016-09-05 08:27:04 +00:00
|
|
|
int proc_owner(int pid);
|
1997-03-23 18:51:21 +00:00
|
|
|
|
|
|
|
/* non-int routines typically used by the machine dependent module */
|
2017-03-26 17:22:44 +00:00
|
|
|
char *printable(char *string);
|
2016-05-22 04:17:00 +00:00
|
|
|
|
2018-05-21 03:58:15 +00:00
|
|
|
caddr_t
|
|
|
|
get_process_info(struct system_info *si, struct process_select *sel,
|
|
|
|
int (*compare)(const void *, const void *));
|
|
|
|
|
2016-05-22 04:17:00 +00:00
|
|
|
#endif /* MACHINE_H */
|