2011-03-31 16:45:12 +05:30
|
|
|
|
/* top.h - Header file: show Linux processes */
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2002-2011, by: James C. Warner
|
|
|
|
|
* All rights reserved. 8921 Hilloway Road
|
|
|
|
|
* Eden Prairie, Minnesota 55347 USA
|
|
|
|
|
*
|
|
|
|
|
* This file may be used subject to the terms and conditions of the
|
|
|
|
|
* GNU Library General Public License Version 2, or any later version
|
|
|
|
|
* at your option, as published by the Free Software Foundation.
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
|
*/
|
|
|
|
|
/* For contributions to this program, the author wishes to thank:
|
|
|
|
|
* Craig Small, <csmall@small.dropbear.id.au>
|
|
|
|
|
* Albert D. Cahalan, <albert@users.sf.net>
|
2011-10-12 00:32:59 +05:30
|
|
|
|
* Sami Kerola, <kerolasa@iki.fi>
|
2011-03-31 16:45:12 +05:30
|
|
|
|
*/
|
2002-05-30 09:14:46 +05:30
|
|
|
|
#ifndef _Itop
|
|
|
|
|
#define _Itop
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
2011-10-14 22:15:44 +05:30
|
|
|
|
#include "../proc/readproc.h"
|
2011-10-26 17:01:48 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Development/Debugging defines ----------------------------------- */
|
2011-04-14 02:38:14 +05:30
|
|
|
|
//#define ATEOJ_RPTHSH /* report on hash specifics, at end-of-job */
|
|
|
|
|
//#define ATEOJ_RPTSTD /* report on misc stuff, at end-of-job */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//#define CASEUP_HEXES /* show any hex values in upper case */
|
|
|
|
|
//#define CASEUP_SUFIX /* show time/mem/cnts suffix in upper case */
|
|
|
|
|
//#define EQUCOLHDRYES /* yes, do equalize column header lengths */
|
|
|
|
|
//#define OFF_HST_HASH /* use BOTH qsort+bsrch vs. hashing scheme */
|
|
|
|
|
//#define OFF_STDIOLBF /* disable our own stdout _IOFBF override */
|
2011-06-23 19:15:09 +05:30
|
|
|
|
//#define OOMEM_ENABLE /* enable the SuSE out-of-memory additions */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//#define PRETEND2_5_X /* pretend we're linux 2.5.x (for IO-wait) */
|
|
|
|
|
//#define PRETEND4CPUS /* pretend we're smp with 4 ticsers (sic) */
|
|
|
|
|
//#define PRETENDNOCAP /* use a terminal without essential caps */
|
2011-04-15 04:54:29 +05:30
|
|
|
|
//#define RCFILE_NOERR /* rcfile errs silently default, vs. fatal */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//#define RMAN_IGNORED /* don't consider auto right margin glitch */
|
|
|
|
|
//#define STRCMPNOCASE /* use strcasecmp vs. strcmp when sorting */
|
|
|
|
|
//#define TERMIOS_ONLY /* just limp along with native input only */
|
2011-08-30 17:35:45 +05:30
|
|
|
|
//#define TREE_NORESET /* sort keys do NOT force forest view OFF */
|
2011-12-06 23:33:15 +05:30
|
|
|
|
//#define TREE_ONEPASS /* for speed, tolerate dangling children */
|
2011-04-14 02:38:14 +05:30
|
|
|
|
//#define USE_X_COLHDR /* emphasize header vs. whole col, for 'x' */
|
2011-10-29 07:08:08 +05:30
|
|
|
|
//#define VALIDATE_NLS /* validate integrity of all 3 nls tables */
|
2011-04-14 02:38:14 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*###### Notes, etc. ###################################################*/
|
|
|
|
|
|
2011-05-05 15:37:25 +05:30
|
|
|
|
/* The following convention is used to identify those areas where
|
2011-04-14 02:38:14 +05:30
|
|
|
|
adaptations for hotplugging are to be found ...
|
2011-05-05 15:37:25 +05:30
|
|
|
|
*** hotplug_acclimated ***
|
2011-10-28 20:58:37 +05:30
|
|
|
|
( hopefully libproc will also be supportive of our efforts ) */
|
2011-04-14 02:38:14 +05:30
|
|
|
|
|
|
|
|
|
/* And there are still some of these lurking here and there...
|
2011-10-28 20:58:37 +05:30
|
|
|
|
FIXME - blah, blah... */
|
2011-05-05 15:37:25 +05:30
|
|
|
|
|
|
|
|
|
/* For introducing inaugural cgroup support, thanks to:
|
2011-10-28 20:58:37 +05:30
|
|
|
|
Jan Gorig <jgorig@redhat.com> - April, 2011 */
|
2004-07-07 01:35:30 +05:30
|
|
|
|
|
2011-10-12 00:32:59 +05:30
|
|
|
|
/* For the motivation and path to nls support, thanks to:
|
2011-10-28 20:58:37 +05:30
|
|
|
|
Sami Kerola, <kerolasa@iki.fi> */
|
2011-10-12 00:32:59 +05:30
|
|
|
|
|
|
|
|
|
/* There are still some short strings that may yet be candidates
|
|
|
|
|
for nls support inclusion. They're identified with:
|
2011-10-28 20:58:37 +05:30
|
|
|
|
// nls_maybe */
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
2002-10-19 02:45:49 +05:30
|
|
|
|
#ifdef PRETEND2_5_X
|
|
|
|
|
#define linux_version_code LINUX_VERSION(2,5,43)
|
|
|
|
|
#endif
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#ifdef STRCMPNOCASE
|
|
|
|
|
#define STRSORTCMP strcasecmp
|
|
|
|
|
#else
|
|
|
|
|
#define STRSORTCMP strcmp
|
|
|
|
|
#endif
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/*###### Some Miscellaneous constants ##################################*/
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* The default delay twix updates */
|
|
|
|
|
#define DEF_DELAY 3.0
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
2011-07-14 16:46:02 +05:30
|
|
|
|
/* Length of time a message is displayed and the duration
|
|
|
|
|
of a 'priming' wait during library startup (in microseconds) */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#define MSG_USLEEP (useconds_t)1250000
|
2011-07-14 16:46:02 +05:30
|
|
|
|
#define LIB_USLEEP (useconds_t)150000
|
2004-07-07 01:35:30 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Specific process id monitoring support (command line only) */
|
|
|
|
|
#define MONPIDMAX 20
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
2011-05-26 15:03:32 +05:30
|
|
|
|
/* Output override minimums (the -w switch and/or env vars) */
|
|
|
|
|
#define W_MIN_COL 3
|
|
|
|
|
#define W_MIN_ROW 3
|
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Miscellaneous buffers with liberal values and some other defines
|
|
|
|
|
-- mostly just to pinpoint source code usage/dependancies */
|
|
|
|
|
#define SCREENMAX 512
|
|
|
|
|
/* the above might seem pretty stingy, until you consider that with every
|
2011-12-29 23:20:32 +05:30
|
|
|
|
field displayed the column header would be approximately 250 bytes
|
|
|
|
|
-- so SCREENMAX provides for all fields plus a 250+ byte command line */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#define CAPBUFSIZ 32
|
|
|
|
|
#define CLRBUFSIZ 64
|
|
|
|
|
#define PFLAGSSIZ 64
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#define SMLBUFSIZ 128
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#define MEDBUFSIZ 256
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#define LRGBUFSIZ 512
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#define OURPATHSZ 1024
|
|
|
|
|
#define BIGBUFSIZ 2048
|
2011-04-14 02:38:14 +05:30
|
|
|
|
/* in addition to the actual display data, our row might have to accomodate
|
|
|
|
|
many termcap/color transitions - these definitions ensure we have room */
|
|
|
|
|
#define ROWMINSIZ ( SCREENMAX + 4 * (CAPBUFSIZ + CLRBUFSIZ) )
|
|
|
|
|
#define ROWMAXSIZ ( SCREENMAX + 16 * (CAPBUFSIZ + CLRBUFSIZ) )
|
2011-03-31 16:45:12 +05:30
|
|
|
|
|
|
|
|
|
// support for keyboard stuff (cursor motion keystrokes, mostly)
|
|
|
|
|
#define kbd_ENTER '\n'
|
|
|
|
|
#define kbd_ESC '\033'
|
|
|
|
|
#define kbd_SPACE ' '
|
|
|
|
|
#define kbd_UP '\x81'
|
|
|
|
|
#define kbd_DOWN '\x82'
|
|
|
|
|
#define kbd_RIGHT '\x83'
|
|
|
|
|
#define kbd_LEFT '\x84'
|
|
|
|
|
#define kbd_PGUP '\x85'
|
|
|
|
|
#define kbd_PGDN '\x86'
|
|
|
|
|
#define kbd_END '\x87'
|
|
|
|
|
#define kbd_HOME '\x88'
|
|
|
|
|
#define kbd_BKSP '\x89'
|
|
|
|
|
#define kbd_INS '\x8a'
|
|
|
|
|
#define kbd_DEL '\x8b'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ##### Enum's and Typedef's ############################################ */
|
|
|
|
|
|
|
|
|
|
/* Flags for each possible field (and then some) --
|
|
|
|
|
these MUST be kept in sync with the FLD_t Fieldstab[] array !! */
|
|
|
|
|
enum pflag {
|
|
|
|
|
P_PID = 0, P_PPD,
|
|
|
|
|
P_UED, P_UEN, P_URD, P_URN, P_USD, P_USN,
|
|
|
|
|
P_GID, P_GRP, P_PGD, P_TTY, P_TPG, P_SID,
|
|
|
|
|
P_PRI, P_NCE, P_THD,
|
|
|
|
|
P_CPN, P_CPU, P_TME, P_TM2,
|
|
|
|
|
P_MEM, P_VRT, P_SWP, P_RES, P_COD, P_DAT, P_SHR,
|
|
|
|
|
P_FL1, P_FL2, P_DRT,
|
2011-04-15 04:54:29 +05:30
|
|
|
|
P_STA, P_CMD, P_WCH, P_FLG, P_CGR,
|
2011-08-17 16:31:35 +05:30
|
|
|
|
P_SGD, P_SGN, P_TGD,
|
2011-05-18 14:03:44 +05:30
|
|
|
|
#ifdef OOMEM_ENABLE
|
2011-04-14 02:38:14 +05:30
|
|
|
|
P_OOA, P_OOM,
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef USE_X_COLHDR
|
|
|
|
|
// not really pflags, used with tbl indexing
|
|
|
|
|
P_MAXPFLGS
|
|
|
|
|
#else
|
2011-03-31 16:45:12 +05:30
|
|
|
|
// not really pflags, used with tbl indexing & col highlighting
|
|
|
|
|
P_MAXPFLGS, X_XON, X_XOF
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#endif
|
2011-03-31 16:45:12 +05:30
|
|
|
|
};
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* The scaling 'type' used with scale_num() -- this is how
|
|
|
|
|
the passed number is interpreted should scaling be necessary */
|
|
|
|
|
enum scale_num {
|
|
|
|
|
SK_no, SK_Kb, SK_Mb, SK_Gb, SK_Tb
|
|
|
|
|
};
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* This typedef just ensures consistent 'process flags' handling */
|
2011-08-30 17:35:45 +05:30
|
|
|
|
typedef unsigned char FLG_t;
|
2002-09-13 17:12:44 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* These typedefs attempt to ensure consistent 'ticks' handling */
|
2002-12-05 04:18:30 +05:30
|
|
|
|
typedef unsigned long long TIC_t;
|
|
|
|
|
typedef long long SIC_t;
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Sort support, callback function signature */
|
2002-12-05 04:18:30 +05:30
|
|
|
|
typedef int (*QFP_t)(const void *, const void *);
|
2002-09-13 17:12:44 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* This structure consolidates the information that's used
|
|
|
|
|
in a variety of display roles. */
|
2002-12-05 04:18:30 +05:30
|
|
|
|
typedef struct FLD_t {
|
|
|
|
|
const char *head; // name for col heads + toggle/reorder fields
|
2011-03-31 16:45:12 +05:30
|
|
|
|
const char *fmts; // snprintf format string for field display
|
2002-12-05 04:18:30 +05:30
|
|
|
|
const int width; // field width, if applicable
|
|
|
|
|
const int scale; // scale_num type, if applicable
|
|
|
|
|
const QFP_t sort; // sort function
|
|
|
|
|
const int lflg; // PROC_FILLxxx flag(s) needed by this field
|
2011-03-31 16:45:12 +05:30
|
|
|
|
const char *desc; // description for fields management
|
2002-12-05 04:18:30 +05:30
|
|
|
|
} FLD_t;
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#ifdef OFF_HST_HASH
|
|
|
|
|
/* This structure supports 'history' processing and ultimately records
|
|
|
|
|
one piece of critical information from one frame to the next --
|
|
|
|
|
we don't calc and save data that goes unused like the old top. */
|
2002-12-05 04:18:30 +05:30
|
|
|
|
typedef struct HST_t {
|
2011-03-31 16:45:12 +05:30
|
|
|
|
TIC_t tics; // last frame's tics count
|
|
|
|
|
int pid; // record 'key'
|
2002-12-05 04:18:30 +05:30
|
|
|
|
} HST_t;
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#else
|
|
|
|
|
/* This structure supports 'history' processing and ultimately records
|
|
|
|
|
one piece of critical information from one frame to the next --
|
|
|
|
|
we don't calc and save data that goes unused like the old top nor
|
|
|
|
|
do we incure the overhead of sorting to support a binary search
|
|
|
|
|
(or worse, a friggin' for loop) when retrieval is necessary! */
|
|
|
|
|
typedef struct HST_t {
|
|
|
|
|
TIC_t tics; // last frame's tics count
|
|
|
|
|
int pid; // record 'key'
|
|
|
|
|
int lnk; // next on hash chain
|
|
|
|
|
} HST_t;
|
|
|
|
|
#endif
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* This structure stores a frame's cpu tics used in history
|
|
|
|
|
calculations. It exists primarily for SMP support but serves
|
|
|
|
|
all environments. */
|
2002-12-05 04:18:30 +05:30
|
|
|
|
typedef struct CPU_t {
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* other kernels: u == user/us, n == nice/ni, s == system/sy, i == idle/id
|
|
|
|
|
2.5.41 kernel: w == IO-wait/wa (io wait time)
|
|
|
|
|
2.6.0 kernel: x == hi (hardware irq time), y == si (software irq time)
|
|
|
|
|
2.6.11 kernel: z == st (virtual steal time) */
|
2006-06-25 07:45:36 +05:30
|
|
|
|
TIC_t u, n, s, i, w, x, y, z; // as represented in /proc/stat
|
|
|
|
|
TIC_t u_sav, s_sav, n_sav, i_sav, w_sav, x_sav, y_sav, z_sav; // in the order of our display
|
2004-07-07 05:41:19 +05:30
|
|
|
|
unsigned id; // the CPU ID number
|
2002-12-05 04:18:30 +05:30
|
|
|
|
} CPU_t;
|
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
|
|
|
|
|
/* /////////////////////////////////////////////////////////////// */
|
|
|
|
|
/* Special Section: multiple windows/field groups --------------- */
|
|
|
|
|
/* ( kind of a header within a header: constants, types & macros ) */
|
|
|
|
|
|
|
|
|
|
#define CAPTABMAX 9 /* max entries in each win's caps table */
|
|
|
|
|
#define GROUPSMAX 4 /* the max number of simultaneous windows */
|
|
|
|
|
#define WINNAMSIZ 4 /* size of RCW_t winname buf (incl '\0') */
|
|
|
|
|
#define GRPNAMSIZ WINNAMSIZ+2 /* window's name + number as in: '#:...' */
|
|
|
|
|
|
|
|
|
|
/* The Persistent 'Mode' flags!
|
|
|
|
|
These are preserved in the rc file, as a single integer and the
|
|
|
|
|
letter shown is the corresponding 'command' toggle */
|
|
|
|
|
// 'View_' flags affect the summary (minimum), taken from 'Curwin'
|
|
|
|
|
#define View_CPUSUM 0x008000 // '1' - show combined cpu stats (vs. each)
|
|
|
|
|
#define View_LOADAV 0x004000 // 'l' - display load avg and uptime summary
|
|
|
|
|
#define View_STATES 0x002000 // 't' - display task/cpu(s) states summary
|
|
|
|
|
#define View_MEMORY 0x001000 // 'm' - display memory summary
|
|
|
|
|
#define View_NOBOLD 0x000008 // 'B' - disable 'bold' attribute globally
|
|
|
|
|
#define View_SCROLL 0x080000 // 'C' - enable coordinates msg w/ scrolling
|
|
|
|
|
// 'Show_' & 'Qsrt_' flags are for task display in a visible window
|
|
|
|
|
#define Show_COLORS 0x000800 // 'z' - show in color (vs. mono)
|
|
|
|
|
#define Show_HIBOLD 0x000400 // 'b' - rows and/or cols bold (vs. reverse)
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#define Show_HICOLS 0x000200 // 'x' - show sort column emphasized
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#define Show_HIROWS 0x000100 // 'y' - show running tasks highlighted
|
|
|
|
|
#define Show_CMDLIN 0x000080 // 'c' - show cmdline vs. name
|
|
|
|
|
#define Show_CTIMES 0x000040 // 'S' - show times as cumulative
|
|
|
|
|
#define Show_IDLEPS 0x000020 // 'i' - show idle processes (all tasks)
|
|
|
|
|
#define Show_TASKON 0x000010 // '-' - tasks showable when Mode_altscr
|
2011-08-30 17:35:45 +05:30
|
|
|
|
#define Show_FOREST 0x000002 // 'V' - show cmd/cmdlines with ascii art
|
2011-03-31 16:45:12 +05:30
|
|
|
|
#define Qsrt_NORMAL 0x000004 // 'R' - reversed column sort (high to low)
|
|
|
|
|
// these flag(s) have no command as such - they're for internal use
|
|
|
|
|
#define EQUWINS_xxx 0x000001 // rebalance all wins & tasks (off 'i'/ 'n')
|
|
|
|
|
|
|
|
|
|
// Default flags if there's no rcfile to provide user customizations
|
|
|
|
|
#define DEF_WINFLGS ( View_LOADAV | View_STATES | View_CPUSUM | View_MEMORY \
|
|
|
|
|
| Show_HIBOLD | Show_HIROWS | Show_IDLEPS | Show_TASKON | Qsrt_NORMAL )
|
|
|
|
|
|
|
|
|
|
/* These are used to direct wins_reflag */
|
|
|
|
|
enum reflag_enum {
|
|
|
|
|
Flags_TOG, Flags_SET, Flags_OFF
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* These are used to direct win_warn */
|
|
|
|
|
enum warn_enum {
|
|
|
|
|
Warn_ALT, Warn_VIZ
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* This type helps support both a window AND the rcfile */
|
2002-12-05 04:18:30 +05:30
|
|
|
|
typedef struct RCW_t { // the 'window' portion of an rcfile
|
|
|
|
|
FLG_t sortindx; // sort field, represented as a procflag
|
|
|
|
|
int winflags, // 'view', 'show' and 'sort' mode flags
|
|
|
|
|
maxtasks, // user requested maximum, 0 equals all
|
|
|
|
|
summclr, // color num used in summ info
|
|
|
|
|
msgsclr, // " in msgs/pmts
|
|
|
|
|
headclr, // " in cols head
|
|
|
|
|
taskclr; // " in task rows
|
|
|
|
|
char winname [WINNAMSIZ], // window name, user changeable
|
|
|
|
|
fieldscur [PFLAGSSIZ]; // fields displayed and ordered
|
|
|
|
|
} RCW_t;
|
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* This represents the complete rcfile */
|
|
|
|
|
typedef struct RCF_t {
|
2002-12-05 04:18:30 +05:30
|
|
|
|
int mode_altscr; // 'A' - Alt display mode (multi task windows)
|
|
|
|
|
int mode_irixps; // 'I' - Irix vs. Solaris mode (SMP-only)
|
2011-03-31 16:45:12 +05:30
|
|
|
|
float delay_time; // 'd'/'s' - How long to sleep twixt updates
|
2002-12-05 04:18:30 +05:30
|
|
|
|
int win_index; // Curwin, as index
|
2011-03-31 16:45:12 +05:30
|
|
|
|
RCW_t win [GROUPSMAX]; // a 'WIN_t.rc' for each window
|
2002-12-05 04:18:30 +05:30
|
|
|
|
} RCF_t;
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* This structure stores configurable information for each window.
|
|
|
|
|
By expending a little effort in its creation and user requested
|
|
|
|
|
maintainence, the only real additional per frame cost of having
|
|
|
|
|
windows is an extra sort -- but that's just on pointers! */
|
|
|
|
|
typedef struct WIN_t {
|
2011-04-15 04:54:29 +05:30
|
|
|
|
FLG_t pflgsall [PFLAGSSIZ], // all 'active/on' fieldscur, as enum
|
|
|
|
|
procflgs [PFLAGSSIZ]; // fieldscur subset, as enum
|
|
|
|
|
RCW_t rc; // stuff that gets saved in the rcfile
|
|
|
|
|
int winnum, // a window's number (array pos + 1)
|
|
|
|
|
winlines, // current task window's rows (volatile)
|
|
|
|
|
maxpflgs, // number of displayed procflgs ("on" in fieldscur)
|
2011-03-31 16:45:12 +05:30
|
|
|
|
totpflgs, // total of displayable procflgs in pflgsall array
|
|
|
|
|
begpflg, // scrolled beginning pos into pflgsall array
|
|
|
|
|
endpflg, // scrolled ending pos into pflgsall array
|
|
|
|
|
begtask, // scrolled beginning pos into Frame_maxtask
|
2011-04-15 04:54:29 +05:30
|
|
|
|
varcolsz, // max length of variable width column(s)
|
|
|
|
|
usrseluid, // validated uid for 'u/U' user selection
|
|
|
|
|
usrseltyp, // the basis for matching above uid
|
|
|
|
|
hdrcaplen; // column header xtra caps len, if any
|
2011-03-31 16:45:12 +05:30
|
|
|
|
char capclr_sum [CLRBUFSIZ], // terminfo strings built from
|
|
|
|
|
capclr_msg [CLRBUFSIZ], // RCW_t colors (& rebuilt too),
|
|
|
|
|
capclr_pmt [CLRBUFSIZ], // but NO recurring costs !
|
|
|
|
|
capclr_hdr [CLRBUFSIZ], // note: sum, msg and pmt strs
|
|
|
|
|
capclr_rowhigh [CLRBUFSIZ], // are only used when this
|
2011-04-15 04:54:29 +05:30
|
|
|
|
capclr_rownorm [CLRBUFSIZ], // window is the 'Curwin'!
|
|
|
|
|
cap_bold [CAPBUFSIZ], // support for View_NOBOLD toggle
|
|
|
|
|
grpname [GRPNAMSIZ], // window number:name, printable
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#ifdef USE_X_COLHDR
|
2011-04-15 04:54:29 +05:30
|
|
|
|
columnhdr [ROWMINSIZ], // column headings for procflgs
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#else
|
2011-04-15 04:54:29 +05:30
|
|
|
|
columnhdr [SCREENMAX], // column headings for procflgs
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#endif
|
2011-05-26 15:03:32 +05:30
|
|
|
|
*eolcap, // window specific eol termcap
|
2011-04-15 04:54:29 +05:30
|
|
|
|
*captab [CAPTABMAX]; // captab needed by show_special()
|
2011-08-30 17:35:45 +05:30
|
|
|
|
proc_t **ppt; // this window's proc_t ptr array
|
2011-03-31 16:45:12 +05:30
|
|
|
|
struct WIN_t *next, // next window in window stack
|
|
|
|
|
*prev; // prior window in window stack
|
|
|
|
|
} WIN_t;
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
// Used to test/manipulate the window flags
|
|
|
|
|
#define CHKw(q,f) (int)((q)->rc.winflags & (f))
|
|
|
|
|
#define TOGw(q,f) (q)->rc.winflags ^= (f)
|
|
|
|
|
#define SETw(q,f) (q)->rc.winflags |= (f)
|
|
|
|
|
#define OFFw(q,f) (q)->rc.winflags &= ~(f)
|
|
|
|
|
#define ALTCHKw (Rc.mode_altscr ? 1 : win_warn(Warn_ALT))
|
|
|
|
|
#define VIZISw(q) (!Rc.mode_altscr || CHKw(q,Show_TASKON))
|
|
|
|
|
#define VIZCHKw(q) (VIZISw(q)) ? 1 : win_warn(Warn_VIZ)
|
|
|
|
|
#define VIZTOGw(q,f) (VIZISw(q)) ? TOGw(q,(f)) : win_warn(Warn_VIZ)
|
2002-02-02 04:17:29 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
// Used to test/manipulte fieldscur values
|
|
|
|
|
#define FLDget(q,i) ((FLG_t)((q)->rc.fieldscur[i] & 0x7f) - FLD_OFFSET)
|
|
|
|
|
#define FLDtog(q,i) ((q)->rc.fieldscur[i] ^= 0x80)
|
|
|
|
|
#define FLDviz(q,i) ((q)->rc.fieldscur[i] & 0x80)
|
2011-08-30 17:35:45 +05:30
|
|
|
|
#define ENUchk(w,E) (NULL != strchr((w)->rc.fieldscur, (E + FLD_OFFSET) | 0x80))
|
|
|
|
|
#define ENUset(w,E) do { char *t; \
|
|
|
|
|
if ((t = strchr((w)->rc.fieldscur, E + FLD_OFFSET))) \
|
|
|
|
|
*t = (E + FLD_OFFSET) | 0x80; \
|
|
|
|
|
/* else fieldscur char already has high bit on! */ \
|
|
|
|
|
} while (0)
|
|
|
|
|
#define ENUviz(w,E) (NULL != memchr((w)->procflgs, E, (w)->maxpflgs))
|
2011-09-12 17:48:23 +05:30
|
|
|
|
#define ENUpos(w,E) ((int)((FLG_t*)memchr((w)->pflgsall, E, (w)->totpflgs) - (w)->pflgsall))
|
2011-08-30 17:35:45 +05:30
|
|
|
|
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Special Section: end ------------------------------------------ */
|
|
|
|
|
/* /////////////////////////////////////////////////////////////// */
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/*###### Some Miscellaneous Macro definitions ##########################*/
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Yield table size as 'int' */
|
|
|
|
|
#define MAXTBL(t) (int)(sizeof(t) / sizeof(t[0]))
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* A null-terminating strncpy, assuming strlcpy is not available.
|
|
|
|
|
( and assuming callers don't need the string length returned ) */
|
|
|
|
|
#define STRLCPY(dst,src) { strncpy(dst, src, sizeof(dst)); dst[sizeof(dst) - 1] = '\0'; }
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Used to clear all or part of our Pseudo_screen */
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#define PSU_CLREOS(y) memset(&Pseudo_screen[ROWMAXSIZ*y], '\0', Pseudo_size-(ROWMAXSIZ*y))
|
2002-12-05 04:18:30 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Used as return arguments in *some* of the sort callbacks */
|
|
|
|
|
#define SORT_lt ( Frame_srtflg > 0 ? 1 : -1 )
|
|
|
|
|
#define SORT_gt ( Frame_srtflg > 0 ? -1 : 1 )
|
|
|
|
|
#define SORT_eq 0
|
|
|
|
|
|
|
|
|
|
/* Used to create *most* of the sort callback functions
|
|
|
|
|
note: some of the callbacks are NOT your father's callbacks, they're
|
|
|
|
|
highly optimized to save them ol' precious cycles! */
|
|
|
|
|
#define SCB_NAME(f) sort_P_ ## f
|
|
|
|
|
#define SCB_NUM1(f,n) \
|
|
|
|
|
static int SCB_NAME(f) (const proc_t **P, const proc_t **Q) { \
|
|
|
|
|
if ( (*P)->n < (*Q)->n ) return SORT_lt; \
|
|
|
|
|
if ( (*P)->n > (*Q)->n ) return SORT_gt; \
|
|
|
|
|
return SORT_eq; }
|
|
|
|
|
#define SCB_NUMx(f,n) \
|
|
|
|
|
static int SCB_NAME(f) (const proc_t **P, const proc_t **Q) { \
|
|
|
|
|
return Frame_srtflg * ( (*Q)->n - (*P)->n ); }
|
|
|
|
|
#define SCB_STRS(f,s) \
|
|
|
|
|
static int SCB_NAME(f) (const proc_t **P, const proc_t **Q) { \
|
2011-11-22 01:13:17 +05:30
|
|
|
|
if (!(*P)->s || !(*Q)->s) return SORT_eq; \
|
2011-03-31 16:45:12 +05:30
|
|
|
|
return Frame_srtflg * STRSORTCMP((*Q)->s, (*P)->s); }
|
2011-05-18 14:03:44 +05:30
|
|
|
|
#define SCB_STRV(f,b,v,s) \
|
2011-05-05 15:37:25 +05:30
|
|
|
|
static int SCB_NAME(f) (const proc_t **P, const proc_t **Q) { \
|
2011-05-18 14:03:44 +05:30
|
|
|
|
if (b) { \
|
|
|
|
|
if (!(*P)->v || !(*Q)->v) return SORT_eq; \
|
|
|
|
|
return Frame_srtflg * STRSORTCMP((*Q)->v[0], (*P)->v[0]); } \
|
|
|
|
|
return Frame_srtflg * STRSORTCMP((*Q)->s, (*P)->s); }
|
2011-08-01 16:58:46 +05:30
|
|
|
|
#define SCB_STRX(f,s) \
|
|
|
|
|
int strverscmp(const char *s1, const char *s2); \
|
|
|
|
|
static int SCB_NAME(f) (const proc_t **P, const proc_t **Q) { \
|
2011-11-22 01:13:17 +05:30
|
|
|
|
if (!(*P)->s || !(*Q)->s) return SORT_eq; \
|
2011-08-01 16:58:46 +05:30
|
|
|
|
return Frame_srtflg * strverscmp((*Q)->s, (*P)->s); }
|
2011-03-31 16:45:12 +05:30
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The following two macros are used to 'inline' those portions of the
|
|
|
|
|
* display process requiring formatting, while protecting against any
|
|
|
|
|
* potential embedded 'millesecond delay' escape sequences.
|
|
|
|
|
*/
|
|
|
|
|
/** PUTT - Put to Tty (used in many places)
|
|
|
|
|
. for temporary, possibly interactive, 'replacement' output
|
|
|
|
|
. may contain ANY valid terminfo escape sequences
|
|
|
|
|
. need NOT represent an entire screen row */
|
|
|
|
|
#define PUTT(fmt,arg...) do { \
|
2011-04-14 02:38:14 +05:30
|
|
|
|
char _str[ROWMAXSIZ]; \
|
2011-03-31 16:45:12 +05:30
|
|
|
|
snprintf(_str, sizeof(_str), fmt, ## arg); \
|
|
|
|
|
putp(_str); \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
/** PUFF - Put for Frame (used in only 3 places)
|
|
|
|
|
. for more permanent frame-oriented 'update' output
|
|
|
|
|
. may NOT contain cursor motion terminfo escapes
|
|
|
|
|
. assumed to represent a complete screen ROW
|
|
|
|
|
. subject to optimization, thus MAY be discarded */
|
|
|
|
|
#define PUFF(fmt,arg...) do { \
|
2011-06-01 17:28:06 +05:30
|
|
|
|
char _str[ROWMAXSIZ], *_eol; \
|
|
|
|
|
_eol = _str + snprintf(_str, sizeof(_str), fmt, ## arg); \
|
|
|
|
|
if (Batch) { \
|
|
|
|
|
while (*(--_eol) == ' '); *(++_eol) = '\0'; putp(_str); } \
|
2011-03-31 16:45:12 +05:30
|
|
|
|
else { \
|
2011-04-14 02:38:14 +05:30
|
|
|
|
char *_ptr = &Pseudo_screen[Pseudo_row * ROWMAXSIZ]; \
|
2011-03-31 16:45:12 +05:30
|
|
|
|
if (Pseudo_row + 1 < Screen_rows) ++Pseudo_row; \
|
|
|
|
|
if (!strcmp(_ptr, _str)) putp("\n"); \
|
|
|
|
|
else { \
|
|
|
|
|
strcpy(_ptr, _str); \
|
|
|
|
|
putp(_ptr); } } \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
/* Orderly end, with any sort of message - see fmtmk */
|
|
|
|
|
#define debug_END(s) { \
|
|
|
|
|
static void error_exit (const char *); \
|
|
|
|
|
fputs(Cap_clr_scr, stdout); \
|
|
|
|
|
error_exit(s); \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* A poor man's breakpoint, if he's too lazy to learn gdb */
|
|
|
|
|
#define its_YOUR_fault { *((char *)0) = '!'; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*###### Display Support *Data* ########################################*/
|
2011-10-12 00:32:59 +05:30
|
|
|
|
/*###### Some Display Support *Data* ###################################*/
|
|
|
|
|
/* ( see module top_nls.c for the nls translatable data ) */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
|
|
|
|
|
/* Configuration files support */
|
|
|
|
|
#define SYS_RCFILESPEC "/etc/toprc"
|
|
|
|
|
#define RCF_EYECATCHER "Config File (Linux processes with windows)\n"
|
|
|
|
|
#define RCF_VERSION_ID 'f'
|
|
|
|
|
|
|
|
|
|
/* The default fields displayed and their order, if nothing is
|
|
|
|
|
specified by the loser, oops user.
|
|
|
|
|
note: any *contiguous* ascii sequence can serve as fieldscur
|
|
|
|
|
characters as long as the initial value is coordinated
|
|
|
|
|
with that specified for FLD_OFFSET
|
|
|
|
|
( we're providing for up to 55 fields initially, )
|
|
|
|
|
( with values chosen to avoid the need to escape ) */
|
|
|
|
|
#define FLD_OFFSET '%'
|
|
|
|
|
// seq_fields "%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ["
|
|
|
|
|
#define DEF_FIELDS "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ķ<EFBFBD><C4B7><EFBFBD>&')*+,-./012568<>?ABCFGHIJKLMNOPQRSTUVWXYZ["
|
|
|
|
|
/* Pre-configured windows/field groups */
|
|
|
|
|
#define JOB_FIELDS "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD>()*+,-./012568>?@ABCFGHIJKLMNOPQRSTUVWXYZ["
|
|
|
|
|
#define MEM_FIELDS "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><C4B3><EFBFBD>&'()*+,-./0125689BFGHIJKLMNOPQRSTUVWXYZ["
|
|
|
|
|
#define USR_FIELDS "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)+,-./1234568;<=>?@ABCFGHIJKLMNOPQRSTUVWXYZ["
|
|
|
|
|
|
|
|
|
|
/* The default values for the local config file */
|
2002-12-05 04:18:30 +05:30
|
|
|
|
#define DEF_RCFILE { \
|
|
|
|
|
0, 1, DEF_DELAY, 0, { \
|
|
|
|
|
{ P_CPU, DEF_WINFLGS, 0, \
|
|
|
|
|
COLOR_RED, COLOR_RED, COLOR_YELLOW, COLOR_RED, \
|
|
|
|
|
"Def", DEF_FIELDS }, \
|
|
|
|
|
{ P_PID, DEF_WINFLGS, 0, \
|
|
|
|
|
COLOR_CYAN, COLOR_CYAN, COLOR_WHITE, COLOR_CYAN, \
|
|
|
|
|
"Job", JOB_FIELDS }, \
|
|
|
|
|
{ P_MEM, DEF_WINFLGS, 0, \
|
|
|
|
|
COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLUE, COLOR_MAGENTA, \
|
|
|
|
|
"Mem", MEM_FIELDS }, \
|
2011-03-31 16:45:12 +05:30
|
|
|
|
{ P_UEN, DEF_WINFLGS, 0, \
|
2002-12-05 04:18:30 +05:30
|
|
|
|
COLOR_YELLOW, COLOR_YELLOW, COLOR_GREEN, COLOR_YELLOW, \
|
|
|
|
|
"Usr", USR_FIELDS } \
|
|
|
|
|
} }
|
|
|
|
|
|
2011-04-15 04:54:29 +05:30
|
|
|
|
/* The format string used with variable width columns --
|
|
|
|
|
see 'calibrate_fields' for supporting logic. */
|
|
|
|
|
#define VARCOL_fmts "%-*.*s "
|
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/* Summary Lines specially formatted string(s) --
|
|
|
|
|
see 'show_special' for syntax details + other cautions. */
|
2002-06-19 05:15:30 +05:30
|
|
|
|
#define LOADAV_line "%s -%s\n"
|
2011-10-28 21:00:40 +05:30
|
|
|
|
#define LOADAV_line_alt "%s~6 -%s\n"
|
2002-06-19 05:15:30 +05:30
|
|
|
|
|
2002-11-29 04:39:48 +05:30
|
|
|
|
|
2002-11-29 21:31:04 +05:30
|
|
|
|
/*###### For Piece of mind #############################################*/
|
2002-11-29 04:39:48 +05:30
|
|
|
|
|
|
|
|
|
/* just sanity check(s)... */
|
2011-04-14 02:38:14 +05:30
|
|
|
|
#if defined(ATEOJ_RPTHSH) && defined(OFF_HST_HASH)
|
|
|
|
|
# error 'ATEOJ_RPTHSH' conflicts with 'OFF_HST_HASH'
|
2002-11-29 04:39:48 +05:30
|
|
|
|
#endif
|
2011-05-26 15:03:32 +05:30
|
|
|
|
#if (LRGBUFSIZ < SCREENMAX)
|
|
|
|
|
# error 'LRGBUFSIZ' must NOT be less than 'SCREENMAX'
|
|
|
|
|
#endif
|
2011-04-14 02:38:14 +05:30
|
|
|
|
|
2002-11-29 04:39:48 +05:30
|
|
|
|
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/*###### Some Prototypes (ha!) #########################################*/
|
|
|
|
|
|
2011-12-17 01:34:38 +05:30
|
|
|
|
/* These 'prototypes' are here mostly for documentation purposes -- */
|
|
|
|
|
/* for now, the only essential one is task_show needed by find_string */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/*------ Sort callbacks ------------------------------------------------*/
|
|
|
|
|
/* for each possible field, in the form of: */
|
|
|
|
|
/*atic int sort_P_XXX (const proc_t **P, const proc_t **Q); */
|
|
|
|
|
/*------ Tiny useful routine(s) ----------------------------------------*/
|
|
|
|
|
//atic const char *fmtmk (const char *fmts, ...);
|
|
|
|
|
//atic inline char *scat (char *dst, const char *src);
|
2011-11-22 01:13:17 +05:30
|
|
|
|
#ifdef TERMIOS_ONLY
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//atic char *strim (char *str);
|
2011-11-22 01:13:17 +05:30
|
|
|
|
#endif
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//atic const char *tg2 (int x, int y);
|
|
|
|
|
/*------ Exit/Interrput routines ---------------------------------------*/
|
|
|
|
|
//atic void bye_bye (const char *str);
|
|
|
|
|
//atic void error_exit (const char *str);
|
2011-11-22 01:13:17 +05:30
|
|
|
|
//atic void library_err (const char *fmts, ...);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//atic void pause_pgm (void);
|
2011-09-12 17:48:23 +05:30
|
|
|
|
//atic void sig_abexit (int sig);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//atic void sig_endpgm (int dont_care_sig);
|
|
|
|
|
//atic void sig_paused (int dont_care_sig);
|
|
|
|
|
//atic void sig_resize (int dont_care_sig);
|
|
|
|
|
/*------ Misc Color/Display support ------------------------------------*/
|
|
|
|
|
//atic void capsmk (WIN_t *q);
|
|
|
|
|
//atic void show_msg (const char *str);
|
|
|
|
|
//atic int show_pmt (const char *str);
|
|
|
|
|
//atic inline void show_scroll (void);
|
|
|
|
|
//atic void show_special (int interact, const char *glob);
|
2011-12-20 19:53:37 +05:30
|
|
|
|
/*------ Low Level Memory/Keyboard support -----------------------------*/
|
|
|
|
|
//atic void *alloc_c (size_t num);
|
|
|
|
|
//atic void *alloc_r (void *ptr, size_t num);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//atic int chin (int ech, char *buf, unsigned cnt);
|
|
|
|
|
//atic int keyin (int init);
|
|
|
|
|
//atic char *linein (const char *prompt);
|
|
|
|
|
/*------ Small Utility routines ----------------------------------------*/
|
|
|
|
|
//atic float get_float (const char *prompt);
|
|
|
|
|
//atic int get_int (const char *prompt);
|
|
|
|
|
//atic const char *scale_num (unsigned long num, const int width, const int type);
|
|
|
|
|
//atic const char *scale_tics (TIC_t tics, const int width);
|
|
|
|
|
//atic const char *user_certify (WIN_t *q, const char *str, char typ);
|
|
|
|
|
//atic inline int user_matched (WIN_t *q, const proc_t *p);
|
|
|
|
|
/*------ Fields Management support -------------------------------------*/
|
|
|
|
|
/*atic FLD_t Fieldstab[] = { ... } */
|
|
|
|
|
//atic void adj_geometry (void);
|
|
|
|
|
//atic void calibrate_fields (void);
|
2011-05-26 15:03:32 +05:30
|
|
|
|
//atic void display_fields (int focus, int extend);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//atic void fields_utility (void);
|
|
|
|
|
//atic void zap_fieldstab (void);
|
|
|
|
|
/*------ Library Interface ---------------------------------------------*/
|
|
|
|
|
//atic CPU_t *cpus_refresh (CPU_t *cpus);
|
|
|
|
|
#ifdef OFF_HST_HASH
|
|
|
|
|
//atic inline HST_t *hstbsrch (HST_t *hst, int max, int pid);
|
|
|
|
|
#else
|
|
|
|
|
//atic inline HST_t *hstget (int pid);
|
|
|
|
|
//atic inline void hstput (unsigned idx);
|
|
|
|
|
#endif
|
|
|
|
|
//atic void prochlp (proc_t *p);
|
2011-08-30 17:35:45 +05:30
|
|
|
|
//atic void procs_refresh (void);
|
2011-07-14 16:46:02 +05:30
|
|
|
|
//atic void sysinfo_refresh (int forced);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/*------ Startup routines ----------------------------------------------*/
|
|
|
|
|
//atic void before (char *me);
|
|
|
|
|
//atic void configs_read (void);
|
|
|
|
|
//atic void parse_args (char **args);
|
|
|
|
|
//atic void whack_terminal (void);
|
|
|
|
|
/*------ Windows/Field Groups support ----------------------------------*/
|
|
|
|
|
//atic void win_names (WIN_t *q, const char *name);
|
|
|
|
|
//atic WIN_t *win_select (char ch);
|
|
|
|
|
//atic int win_warn (int what);
|
|
|
|
|
//atic void winsclrhlp (WIN_t *q, int save);
|
|
|
|
|
//atic void wins_colors (void);
|
|
|
|
|
//atic void wins_reflag (int what, int flg);
|
|
|
|
|
//atic void wins_stage_1 (void);
|
|
|
|
|
//atic void wins_stage_2 (void);
|
|
|
|
|
/*------ Interactive Input support (do_key helpers) --------------------*/
|
|
|
|
|
//atic void file_writerc (void);
|
2011-12-17 01:34:38 +05:30
|
|
|
|
//atic void find_string (int ch);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
//atic void help_view (void);
|
|
|
|
|
//atic void keys_global (int ch);
|
|
|
|
|
//atic void keys_summary (int ch);
|
|
|
|
|
//atic void keys_task (int ch);
|
|
|
|
|
//atic void keys_window (int ch);
|
|
|
|
|
//atic void keys_xtra (int ch);
|
2011-08-30 17:35:45 +05:30
|
|
|
|
/*------ Forest View support -------------------------------------------*/
|
|
|
|
|
//atic void forest_add (const int self, const int level);
|
|
|
|
|
//atic void forest_create (WIN_t *q);
|
|
|
|
|
//atic inline const char *forest_display (const WIN_t *q, const proc_t *p);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/*------ Main Screen routines ------------------------------------------*/
|
|
|
|
|
//atic void do_key (int ch);
|
|
|
|
|
//atic void summaryhlp (CPU_t *cpu, const char *pfx);
|
2011-08-30 17:35:45 +05:30
|
|
|
|
//atic void summary_show (void);
|
2011-12-17 01:34:38 +05:30
|
|
|
|
static void task_show (const WIN_t *q, const proc_t *p, char *ptr);
|
2011-08-30 17:35:45 +05:30
|
|
|
|
//atic int window_show (WIN_t *q, int wmax);
|
2011-03-31 16:45:12 +05:30
|
|
|
|
/*------ Entry point plus two ------------------------------------------*/
|
|
|
|
|
//atic void framehlp (int wix, int max);
|
|
|
|
|
//atic void frame_make (void);
|
|
|
|
|
// int main (int dont_care_argc, char **argv);
|
2002-05-30 09:14:46 +05:30
|
|
|
|
|
|
|
|
|
#endif /* _Itop */
|
2011-03-31 16:45:12 +05:30
|
|
|
|
|