freebsd-dev/usr.bin/top/layout.h
Eitan Adler 3be6ef0659 top(1): Migrate top to usr.bin
We've been maintaining top(1) for a long time, and the upstream
hasn't existed/been used in similarly as long. Make it clear that we own
top(1)

Tested with 'make universe'. Everything passed except MIPS which failed
for unrelated reasons. Install also tested for amd64.

Reviewed by:		sbruno
No objections:		imp, mmacy
Differential Revision:	https://reviews.freebsd.org/D15387
2018-05-19 22:40:23 +00:00

36 lines
999 B
C

/*
* Top - a top users display for Berkeley Unix
*
* This file defines the locations on tne screen for various parts of the
* display. These definitions are used by the routines in "display.c" for
* cursor addressing.
*
* $FreeBSD$
*/
extern int x_lastpid; /* 10 */
extern int y_lastpid; /* 0 */
extern int x_loadave; /* 33 */
extern int x_loadave_nompid; /* 15 */
extern int y_loadave; /* 0 */
extern int x_procstate; /* 0 */
extern int y_procstate; /* 1 */
extern int x_brkdn; /* 15 */
extern int y_brkdn; /* 1 */
extern int x_mem; /* 5 */
extern int y_mem; /* 3 */
extern int x_arc; /* 5 */
extern int y_arc; /* 4 */
extern int x_carc; /* 5 */
extern int y_carc; /* 5 */
extern int x_swap; /* 6 */
extern int y_swap; /* 4 */
extern int y_message; /* 5 */
extern int x_header; /* 0 */
extern int y_header; /* 6 */
extern int x_idlecursor; /* 0 */
extern int y_idlecursor; /* 5 */
extern int y_procs; /* 7 */
extern int y_cpustates; /* 2 */