xref: /dragonfly/usr.bin/systat/extern.h (revision 36a3d1d6)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)extern.h	8.1 (Berkeley) 6/6/93
34  * $DragonFly: src/usr.bin/systat/extern.h,v 1.8 2008/11/10 04:59:45 swildner Exp $
35  */
36 
37 #include <fcntl.h>
38 #include <kvm.h>
39 
40 extern struct	cmdtab *curcmd;
41 extern struct	cmdtab cmdtab[];
42 extern struct	text *xtext;
43 extern WINDOW	*wnd;
44 extern char	**dr_name;
45 extern char	c, *namp, hostname[];
46 extern double	avenrun[3];
47 extern float	*dk_mspw;
48 extern kvm_t	*kd;
49 extern long	ntext, textp;
50 extern int	*dk_select;
51 extern int	CMDLINE;
52 extern int	dk_ndrive;
53 extern int	hz, stathz;
54 extern double	hertz;		/* sampling frequency for cp_time and dk_time */
55 extern double	naptime;
56 extern int	col;
57 extern int	nhosts;
58 extern int	nports;
59 extern int	protos;
60 extern int	verbose;
61 
62 struct inpcb;
63 
64 extern struct device_selection *dev_select;
65 extern long			generation;
66 extern int			num_devices;
67 extern int			num_selected;
68 extern int			num_selections;
69 extern long			select_generation;
70 
71 int	 checkhost(struct inpcb *);
72 int	 checkport(struct inpcb *);
73 void	 closeiostat(WINDOW *);
74 void     closeifstat(WINDOW *);
75 void	 closeicmp(WINDOW *);
76 void     closeicmp6(WINDOW *);
77 void	 closeip(WINDOW *);
78 void	 closeip6(WINDOW *);
79 void	 closekre(WINDOW *);
80 void	 closembufs(WINDOW *);
81 void	 closenetstat(WINDOW *);
82 void	 closepigs(WINDOW *);
83 void	 closesensors(WINDOW *);
84 void	 closeswap(WINDOW *);
85 void	 closetcp(WINDOW *);
86 void	 closevmm(WINDOW *);
87 int	 cmdiostat(const char *, char *);
88 int	 cmdifstat(const char *, char *);
89 int	 cmdkre(const char *, char *);
90 int	 cmdnetstat(const char *, char *);
91 struct	 cmdtab *lookup(const char *);
92 void	 command(const char *);
93 void	 die(int);
94 void	 display(int);
95 int	 dkinit(void);
96 int	 dkcmd(char *, char *);
97 void	 error(const char *fmt, ...) __printflike(1, 2);
98 void	 fetchicmp(void);
99 void	 fetchicmp6(void);
100 void     fetchifstat(void);
101 void	 fetchip(void);
102 void	 fetchip6(void);
103 void	 fetchiostat(void);
104 void	 fetchkre(void);
105 void	 fetchmbufs(void);
106 void	 fetchnetstat(void);
107 void	 fetchpigs(void);
108 void	 fetchsensors(void);
109 void	 fetchswap(void);
110 void	 fetchtcp(void);
111 void	 fetchvmm(void);
112 int	 ifcmd(const char *, const char *);
113 int	 initicmp(void);
114 int	 initicmp6(void);
115 int      initifstat(void);
116 int	 initip(void);
117 int	 initip6(void);
118 int	 initiostat(void);
119 int	 initkre(void);
120 int	 initmbufs(void);
121 int	 initnetstat(void);
122 int	 initpigs(void);
123 int	 initsensors(void);
124 int	 initswap(void);
125 int	 inittcp(void);
126 int	 initvmm(void);
127 int	 keyboard(void);
128 int	 kvm_ckread(void *, void *, int);
129 void	 labelicmp(void);
130 void	 labelicmp6(void);
131 void     labelifstat(void);
132 void	 labelip(void);
133 void	 labelip6(void);
134 void	 labeliostat(void);
135 void	 labelkre(void);
136 void	 labelmbufs(void);
137 void	 labelnetstat(void);
138 void	 labelpigs(void);
139 void	 labels(void);
140 void	 labelsensors(void);
141 void	 labelswap(void);
142 void	 labeltcp(void);
143 void	 labelvmm(void);
144 void	 load(void);
145 int	 netcmd(const char *, char *);
146 void	 nlisterr(struct nlist []);
147 WINDOW	*openicmp(void);
148 WINDOW	*openicmp6(void);
149 WINDOW  *openifstat(void);
150 WINDOW	*openip(void);
151 WINDOW	*openip6(void);
152 WINDOW	*openiostat(void);
153 WINDOW	*openkre(void);
154 WINDOW	*openmbufs(void);
155 WINDOW	*opennetstat(void);
156 WINDOW	*openpigs(void);
157 WINDOW	*opensensors(void);
158 WINDOW	*openswap(void);
159 WINDOW	*opentcp(void);
160 WINDOW	*openvmm(void);
161 int	 prefix(const char *, const char *);
162 void	 reseticmp(void);
163 void	 reseticmp6(void);
164 void	 resetip(void);
165 void	 resetip6(void);
166 void	 resettcp(void);
167 void	 showicmp(void);
168 void	 showicmp6(void);
169 void     showifstat(void);
170 void	 showip(void);
171 void	 showip6(void);
172 void	 showiostat(void);
173 void	 showkre(void);
174 void	 showmbufs(void);
175 void	 shownetstat(void);
176 void	 showpigs(void);
177 void	 showsensors(void);
178 void	 showswap(void);
179 void	 showtcp(void);
180 void	 showvmm(void);
181 void	 status(void);
182 void	 suspend(int);
183