* When all columns are given null customised headers, the blank header
line is not printed at all. This is specified in P1003.1-2004
(SUSv3), and is useful.
* Customised headers may contain embedded space, commas and equals
signs. To specify multiple customised headers, use multiple -o or -O
options. This is specified (for "-o", not for "-O") in P1003.1-2004
(SUSv3), and is useful.
* When a column is given a null (blank) customised header, it keeps its
default minimum width. This is specified in P1003.1-2004 (SUSv3), and
seems harmless.
* Fix a bug that made it impossible to print the same keyword multiple
times, with different customised headers each time. (Previously, the
last customised header was used for all instances of the keyword.)
* Make the behaviour of "-O" more useful. The first -O option adds
the default keywords only if there have not yet been any formatting
options, and multiple -O options now insert their keywords in adjacent
positions. Now {ps -j -O %cpu} is like {ps -j} with one extra column;
Previously, it would have had all the columns implied by "-j", plus
all the default columns, plus the extra column specified by "-O".
* Convert from home-grown linked lists to SIMPLEQ lists.
Discussed in tech-userlevel.
2006-10-02 21:54:35 +04:00
|
|
|
/* $NetBSD: ps.h,v 1.26 2006/10/02 17:54:35 apb Exp $ */
|
1995-03-21 12:01:59 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1994-05-09 07:31:07 +04:00
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:05:01 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1994-05-09 07:31:07 +04:00
|
|
|
* @(#)ps.h 8.1 (Berkeley) 5/31/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
* When all columns are given null customised headers, the blank header
line is not printed at all. This is specified in P1003.1-2004
(SUSv3), and is useful.
* Customised headers may contain embedded space, commas and equals
signs. To specify multiple customised headers, use multiple -o or -O
options. This is specified (for "-o", not for "-O") in P1003.1-2004
(SUSv3), and is useful.
* When a column is given a null (blank) customised header, it keeps its
default minimum width. This is specified in P1003.1-2004 (SUSv3), and
seems harmless.
* Fix a bug that made it impossible to print the same keyword multiple
times, with different customised headers each time. (Previously, the
last customised header was used for all instances of the keyword.)
* Make the behaviour of "-O" more useful. The first -O option adds
the default keywords only if there have not yet been any formatting
options, and multiple -O options now insert their keywords in adjacent
positions. Now {ps -j -O %cpu} is like {ps -j} with one extra column;
Previously, it would have had all the columns implied by "-j", plus
all the default columns, plus the extra column specified by "-O".
* Convert from home-grown linked lists to SIMPLEQ lists.
Discussed in tech-userlevel.
2006-10-02 21:54:35 +04:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#define UNLIMITED 0 /* unlimited terminal width */
|
2000-06-07 08:57:59 +04:00
|
|
|
|
2004-03-27 17:09:10 +03:00
|
|
|
#define PRINTMODE 0 /* print values */
|
|
|
|
#define WIDTHMODE 1 /* determine width of column */
|
2000-06-07 08:57:59 +04:00
|
|
|
|
1995-09-30 00:57:03 +03:00
|
|
|
enum type {
|
2003-03-06 12:04:21 +03:00
|
|
|
UNSPECIFIED,
|
|
|
|
CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG,
|
|
|
|
KPTR, KPTR24, INT32, UINT32, SIGLIST, INT64, UINT64,
|
|
|
|
TIMEVAL, CPUTIME, PCPU, VSIZE
|
1995-09-30 00:57:03 +03:00
|
|
|
};
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* Variables. */
|
* When all columns are given null customised headers, the blank header
line is not printed at all. This is specified in P1003.1-2004
(SUSv3), and is useful.
* Customised headers may contain embedded space, commas and equals
signs. To specify multiple customised headers, use multiple -o or -O
options. This is specified (for "-o", not for "-O") in P1003.1-2004
(SUSv3), and is useful.
* When a column is given a null (blank) customised header, it keeps its
default minimum width. This is specified in P1003.1-2004 (SUSv3), and
seems harmless.
* Fix a bug that made it impossible to print the same keyword multiple
times, with different customised headers each time. (Previously, the
last customised header was used for all instances of the keyword.)
* Make the behaviour of "-O" more useful. The first -O option adds
the default keywords only if there have not yet been any formatting
options, and multiple -O options now insert their keywords in adjacent
positions. Now {ps -j -O %cpu} is like {ps -j} with one extra column;
Previously, it would have had all the columns implied by "-j", plus
all the default columns, plus the extra column specified by "-O".
* Convert from home-grown linked lists to SIMPLEQ lists.
Discussed in tech-userlevel.
2006-10-02 21:54:35 +04:00
|
|
|
typedef SIMPLEQ_HEAD(varlist, varent) VARLIST;
|
|
|
|
|
1994-05-09 07:31:07 +04:00
|
|
|
typedef struct varent {
|
* When all columns are given null customised headers, the blank header
line is not printed at all. This is specified in P1003.1-2004
(SUSv3), and is useful.
* Customised headers may contain embedded space, commas and equals
signs. To specify multiple customised headers, use multiple -o or -O
options. This is specified (for "-o", not for "-O") in P1003.1-2004
(SUSv3), and is useful.
* When a column is given a null (blank) customised header, it keeps its
default minimum width. This is specified in P1003.1-2004 (SUSv3), and
seems harmless.
* Fix a bug that made it impossible to print the same keyword multiple
times, with different customised headers each time. (Previously, the
last customised header was used for all instances of the keyword.)
* Make the behaviour of "-O" more useful. The first -O option adds
the default keywords only if there have not yet been any formatting
options, and multiple -O options now insert their keywords in adjacent
positions. Now {ps -j -O %cpu} is like {ps -j} with one extra column;
Previously, it would have had all the columns implied by "-j", plus
all the default columns, plus the extra column specified by "-O".
* Convert from home-grown linked lists to SIMPLEQ lists.
Discussed in tech-userlevel.
2006-10-02 21:54:35 +04:00
|
|
|
SIMPLEQ_ENTRY(varent) next;
|
1994-05-09 07:31:07 +04:00
|
|
|
struct var *var;
|
|
|
|
} VARENT;
|
|
|
|
|
|
|
|
typedef struct var {
|
2005-06-26 23:10:48 +04:00
|
|
|
const char *name; /* name(s) of variable */
|
* When all columns are given null customised headers, the blank header
line is not printed at all. This is specified in P1003.1-2004
(SUSv3), and is useful.
* Customised headers may contain embedded space, commas and equals
signs. To specify multiple customised headers, use multiple -o or -O
options. This is specified (for "-o", not for "-O") in P1003.1-2004
(SUSv3), and is useful.
* When a column is given a null (blank) customised header, it keeps its
default minimum width. This is specified in P1003.1-2004 (SUSv3), and
seems harmless.
* Fix a bug that made it impossible to print the same keyword multiple
times, with different customised headers each time. (Previously, the
last customised header was used for all instances of the keyword.)
* Make the behaviour of "-O" more useful. The first -O option adds
the default keywords only if there have not yet been any formatting
options, and multiple -O options now insert their keywords in adjacent
positions. Now {ps -j -O %cpu} is like {ps -j} with one extra column;
Previously, it would have had all the columns implied by "-j", plus
all the default columns, plus the extra column specified by "-O".
* Convert from home-grown linked lists to SIMPLEQ lists.
Discussed in tech-userlevel.
2006-10-02 21:54:35 +04:00
|
|
|
const char *header; /* header, possibly changed from default */
|
1993-03-21 12:45:37 +03:00
|
|
|
#define COMM 0x01 /* needs exec arguments and environment (XXX) */
|
2004-03-27 17:52:36 +03:00
|
|
|
#define ARGV0 0x02 /* only print argv[0] */
|
|
|
|
#define LJUST 0x04 /* left adjust on output (trailing blanks) */
|
|
|
|
#define INF127 0x08 /* 127 = infinity: if > 127, print 127. */
|
|
|
|
#define LWP 0x10 /* dispatch to kinfo_lwp routine */
|
|
|
|
#define UAREA 0x20 /* need to check p_uvalid */
|
|
|
|
#define ALIAS 0x40 /* entry is alias for 'header' */
|
1993-03-21 12:45:37 +03:00
|
|
|
u_int flag;
|
1994-05-09 07:31:07 +04:00
|
|
|
/* output routine */
|
2004-03-27 15:09:28 +03:00
|
|
|
void (*oproc)(void *, struct varent *, int);
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* The following (optional) elements are hooks for passing information
|
2000-05-26 07:04:28 +04:00
|
|
|
* to the generic output routine: pvar (that which prints simple
|
|
|
|
* elements from struct kinfo_proc2).
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
int off; /* offset in structure */
|
|
|
|
enum type type; /* type of element */
|
2005-06-26 23:10:48 +04:00
|
|
|
const char *fmt; /* printf format */
|
2003-03-06 12:04:21 +03:00
|
|
|
|
2000-06-07 08:57:59 +04:00
|
|
|
/* current longest element */
|
2003-03-06 12:04:21 +03:00
|
|
|
int width; /* printing width */
|
2000-06-07 08:57:59 +04:00
|
|
|
int64_t longestp; /* longest positive signed value */
|
|
|
|
int64_t longestn; /* longest negative signed value */
|
|
|
|
u_int64_t longestu; /* longest unsigned value */
|
|
|
|
double longestpd; /* longest positive double */
|
|
|
|
double longestnd; /* longest negative double */
|
1993-03-21 12:45:37 +03:00
|
|
|
} VAR;
|
|
|
|
|
2004-03-27 17:09:10 +03:00
|
|
|
#define OUTPUT(vent, ki, kl, mode) do { \
|
2003-01-18 13:52:16 +03:00
|
|
|
if ((vent)->var->flag & LWP) \
|
|
|
|
((vent)->var->oproc)((void *)(kl), (vent), (mode)); \
|
|
|
|
else \
|
|
|
|
((vent)->var->oproc)((void *)(ki), (vent), (mode)); \
|
|
|
|
} while (/*CONSTCOND*/ 0)
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include "extern.h"
|