xref: /openbsd-src/bin/ps/extern.h (revision b2ea75c1b17e1a9a339660e7ed45cd24946b230e)
1 /*	$OpenBSD: extern.h,v 1.5 1997/09/03 13:51:39 kstailey Exp $	*/
2 /*	$NetBSD: extern.h,v 1.10 1995/05/21 13:38:27 mycroft Exp $	*/
3 
4 /*-
5  * Copyright (c) 1991, 1993, 1994
6  *	The Regents of the University of California.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by the University of
19  *	California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *	@(#)extern.h	8.3 (Berkeley) 4/2/94
37  */
38 
39 struct kinfo;
40 struct nlist;
41 struct var;
42 struct varent;
43 
44 extern fixpt_t ccpu;
45 extern int eval, fscale, mempages, nlistread, rawcpu;
46 extern int sumrusage, termwidth, totwidth;
47 extern VAR var[];
48 extern VARENT *vhead;
49 
50 __BEGIN_DECLS
51 void	 command __P((KINFO *, VARENT *));
52 void	 cputime __P((KINFO *, VARENT *));
53 int	 donlist __P((void));
54 void	 evar __P((KINFO *, VARENT *));
55 void	 emulname  __P((KINFO *, VARENT *));
56 void	 fmt_puts __P((char *, int *));
57 void	 fmt_putc __P((int, int *));
58 double	 getpcpu __P((KINFO *));
59 double	 getpmem __P((KINFO *));
60 void	 gname __P((KINFO *, VARENT *));
61 void	 logname __P((KINFO *, VARENT *));
62 void	 longtname __P((KINFO *, VARENT *));
63 void	 lstarted __P((KINFO *, VARENT *));
64 void	 maxrss __P((KINFO *, VARENT *));
65 void	 nlisterr __P((struct nlist *));
66 void	 p_rssize __P((KINFO *, VARENT *));
67 void	 pagein __P((KINFO *, VARENT *));
68 void	 parsefmt __P((char *));
69 void	 pcpu __P((KINFO *, VARENT *));
70 void	 pmem __P((KINFO *, VARENT *));
71 void	 pri __P((KINFO *, VARENT *));
72 void	 printheader __P((void));
73 void	 pvar __P((KINFO *, VARENT *));
74 void	 rgname __P((KINFO *, VARENT *));
75 void	 rssize __P((KINFO *, VARENT *));
76 void	 runame __P((KINFO *, VARENT *));
77 void	 rvar __P((KINFO *, VARENT *));
78 void	 showkey __P((void));
79 void	 started __P((KINFO *, VARENT *));
80 void	 state __P((KINFO *, VARENT *));
81 void	 tdev __P((KINFO *, VARENT *));
82 void	 tname __P((KINFO *, VARENT *));
83 void	 tsize __P((KINFO *, VARENT *));
84 void	 ucomm __P((KINFO *, VARENT *));
85 void	 uname __P((KINFO *, VARENT *));
86 void	 uvar __P((KINFO *, VARENT *));
87 void	 vsize __P((KINFO *, VARENT *));
88 void	 wchan __P((KINFO *, VARENT *));
89 __END_DECLS
90