NetBSD/bin/ps/extern.h

99 lines
4.0 KiB
C
Raw Normal View History

/* $NetBSD: extern.h,v 1.24 2003/03/06 09:04:21 dsl 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) 1991, 1993, 1994
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* 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
* @(#)extern.h 8.3 (Berkeley) 4/2/94
1993-03-21 12:45:37 +03:00
*/
1994-05-09 07:31:07 +04:00
struct kinfo;
struct nlist;
struct var;
struct varent;
1993-03-21 12:45:37 +03:00
extern double ccpu;
extern int eval, fscale, mempages, nlistread, rawcpu, maxslp, uspace;
1994-05-09 07:31:07 +04:00
extern int sumrusage, termwidth, totwidth;
2003-01-18 13:52:16 +03:00
extern int needenv, needcomm, commandonly;
extern uid_t myuid;
extern kvm_t *kd;
1993-03-21 12:45:37 +03:00
extern VAR var[];
1994-05-09 07:31:07 +04:00
extern VARENT *vhead;
extern VARENT *sorthead;
1993-03-21 12:45:37 +03:00
__BEGIN_DECLS
2003-01-18 13:52:16 +03:00
void command __P((void *, VARENT *, int));
void cputime __P((void *, VARENT *, int));
1994-05-09 07:31:07 +04:00
int donlist __P((void));
int donlist_sysctl __P((void));
1995-05-21 17:38:25 +04:00
void fmt_puts __P((char *, int *));
void fmt_putc __P((int, int *));
double getpcpu __P((struct kinfo_proc2 *));
double getpmem __P((struct kinfo_proc2 *));
void gname __P((void *, VARENT *, int));
void groups __P((void *, VARENT *, int));
void groupnames __P((void *, VARENT *, int));
2003-01-18 13:52:16 +03:00
void logname __P((void *, VARENT *, int));
void longtname __P((void *, VARENT *, int));
void lstarted __P((void *, VARENT *, int));
void lstate __P((void *, VARENT *, int));
void maxrss __P((void *, VARENT *, int));
1994-05-09 07:31:07 +04:00
void nlisterr __P((struct nlist *));
2003-01-18 13:52:16 +03:00
void p_rssize __P((void *, VARENT *, int));
void pagein __P((void *, VARENT *, int));
void parsefmt __P((const char *));
void parsesort __P((const char *));
2003-01-18 13:52:16 +03:00
void pcpu __P((void *, VARENT *, int));
void pmem __P((void *, VARENT *, int));
void pnice __P((void *, VARENT *, int));
void pri __P((void *, VARENT *, int));
1994-05-09 07:31:07 +04:00
void printheader __P((void));
void putimeval __P((void *, VARENT *, int));
2003-01-18 13:52:16 +03:00
void pvar __P((void *, VARENT *, int));
void rgname __P((void *, VARENT *, int));
2003-01-18 13:52:16 +03:00
void rssize __P((void *, VARENT *, int));
void runame __P((void *, VARENT *, int));
1994-05-09 07:31:07 +04:00
void showkey __P((void));
2003-01-18 13:52:16 +03:00
void started __P((void *, VARENT *, int));
void state __P((void *, VARENT *, int));
void svgname __P((void *, VARENT *, int));
void svuname __P((void *, VARENT *, int));
2003-01-18 13:52:16 +03:00
void tdev __P((void *, VARENT *, int));
void tname __P((void *, VARENT *, int));
void tsize __P((void *, VARENT *, int));
void ucomm __P((void *, VARENT *, int));
void uname __P((void *, VARENT *, int));
void uvar __P((void *, VARENT *, int));
void vsize __P((void *, VARENT *, int));
void wchan __P((void *, VARENT *, int));
1993-03-21 12:45:37 +03:00
__END_DECLS