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
|
|
|
|
|
2018-06-04 04:59:32 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2018-06-03 23:40:54 +00:00
|
|
|
#define NUM_AVERAGES 3
|
|
|
|
|
|
|
|
/* Log base 2 of 1024 is 10 (2^10 == 1024) */
|
|
|
|
#define LOG1024 10
|
1997-03-23 18:51:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* the statics struct is filled in by machine_init
|
|
|
|
*/
|
|
|
|
struct statics
|
|
|
|
{
|
2018-06-03 22:42:54 +00:00
|
|
|
const char * const *procstate_names;
|
|
|
|
const char * const *cpustate_names;
|
|
|
|
const char * const *memory_names;
|
|
|
|
const char * const *arc_names;
|
|
|
|
const char * const *carc_names;
|
|
|
|
const char * const *swap_names;
|
|
|
|
const char * const *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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct system_info
|
|
|
|
{
|
|
|
|
int last_pid;
|
|
|
|
double load_avg[NUM_AVERAGES];
|
|
|
|
int p_total;
|
2018-05-21 04:40:20 +00:00
|
|
|
int p_pactive; /* 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
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2018-06-09 02:14:33 +00:00
|
|
|
* the process_select struct tells get_process_info what processes
|
|
|
|
* and information we are interested in seeing
|
1997-03-23 18:51:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct process_select
|
|
|
|
{
|
2018-06-09 02:14:33 +00:00
|
|
|
bool idle; /* show idle processes */
|
|
|
|
bool self; /* show self */
|
|
|
|
bool system; /* show system processes */
|
|
|
|
bool thread; /* show threads */
|
|
|
|
bool thread_id; /* show thread ids */
|
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) */
|
2018-06-09 02:14:33 +00:00
|
|
|
bool wcpu; /* show weighted cpu */
|
2014-05-02 23:30:39 +00:00
|
|
|
int jid; /* only this jid (unless jid == -1) */
|
2018-06-09 02:14:33 +00:00
|
|
|
bool jail; /* show jail ID */
|
|
|
|
bool swap; /* show swap usage */
|
|
|
|
bool kidle; /* show per-CPU idle threads */
|
|
|
|
int pid; /* only this pid (unless pid == -1) */
|
|
|
|
const char *command; /* only this command (unless == NULL) */
|
1997-03-23 18:51:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* routines defined by the machine dependent module */
|
|
|
|
|
2018-06-22 10:17:12 +00:00
|
|
|
struct handle;
|
|
|
|
|
2018-06-22 09:21:01 +00:00
|
|
|
char *format_header(const char *uname_field);
|
2018-06-22 10:17:12 +00:00
|
|
|
char *format_next_process(struct handle* handle, char *(*get_userid)(int),
|
2017-03-26 17:22:44 +00:00
|
|
|
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);
|
1997-03-23 18:51:21 +00:00
|
|
|
|
|
|
|
/* non-int routines typically used by the machine dependent module */
|
2018-05-21 09:25:21 +00:00
|
|
|
extern struct process_select ps;
|
2016-05-22 04:17:00 +00:00
|
|
|
|
2018-05-21 09:25:21 +00:00
|
|
|
void *
|
2018-05-21 03:58:15 +00:00
|
|
|
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 */
|