extern.h revision 1.19 1 /* $NetBSD: extern.h,v 1.19 2000/01/05 11:59:12 itojun Exp $ */
2
3 /*-
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * @(#)extern.h 8.1 (Berkeley) 6/6/93
36 */
37
38 #include <sys/cdefs.h>
39 #include <fcntl.h>
40 #include <kvm.h>
41
42 extern struct command global_commands[];
43 extern struct mode *curmode;
44 extern struct mode modes[];
45 extern struct text *xtext;
46 extern WINDOW *wnd;
47 extern char **dr_name;
48 extern char c, *namp, hostname[];
49 extern double avenrun[3];
50 extern float *dk_mspw;
51 extern kvm_t *kd;
52 extern long ntext, textp;
53 extern int *dk_select;
54 extern int CMDLINE;
55 extern int dk_ndrive;
56 extern int hz, stathz;
57 extern int naptime, col;
58 extern int nhosts;
59 extern int nports;
60 extern int protos;
61 extern int verbose;
62
63 struct inpcb;
64 #ifdef INET6
65 struct in6pcb;
66 #endif
67
68 int checkhost __P((struct inpcb *));
69 int checkport __P((struct inpcb *));
70 #ifdef INET6
71 int checkhost6 __P((struct in6pcb *));
72 int checkport6 __P((struct in6pcb *));
73 #endif
74 void closebufcache __P((WINDOW *));
75 void closeicmp __P ((WINDOW *));
76 void closeiostat __P((WINDOW *));
77 void closeip __P ((WINDOW *));
78 void closekre __P((WINDOW *));
79 void closembufs __P((WINDOW *));
80 void closenetstat __P((WINDOW *));
81 void closepigs __P((WINDOW *));
82 void closeswap __P((WINDOW *));
83 void closetcp __P ((WINDOW *));
84 void command __P((char *));
85 void die __P((int));
86 void disks_add __P((char *));
87 void disks_delete __P((char *));
88 void disks_drives __P((char *));
89 void display __P((int));
90 int dkinit __P((int, gid_t));
91 void error __P((const char *fmt, ...));
92 void fetchbufcache __P((void));
93 void fetchicmp __P((void));
94 void fetchiostat __P((void));
95 void fetchip __P((void));
96 void fetchkre __P((void));
97 void fetchmbufs __P((void));
98 void fetchnetstat __P((void));
99 void fetchpigs __P((void));
100 void fetchswap __P((void));
101 void fetchtcp __P((void));
102 void global_help __P((char *args));
103 void global_interval __P((char *args));
104 void global_load __P((char *args));
105 void global_quit __P((char *args));
106 void global_stop __P((char *args));
107 int initbufcache __P((void));
108 int initicmp __P((void));
109 int initiostat __P((void));
110 int initip __P((void));
111 int initkre __P((void));
112 int initmbufs __P((void));
113 int initnetstat __P((void));
114 int initpigs __P((void));
115 int initswap __P((void));
116 int inittcp __P((void));
117 void iostat_bars __P((char *));
118 void iostat_numbers __P((char *));
119 void iostat_secs __P((char *));
120 int keyboard __P((void)) __attribute__((__noreturn__));
121 ssize_t kvm_ckread __P((void *, void *, size_t));
122 void labelbufcache __P((void));
123 void labelicmp __P((void));
124 void labeliostat __P((void));
125 void labelip __P((void));
126 void labelkre __P((void));
127 void labelmbufs __P((void));
128 void labelnetstat __P((void));
129 void labelpigs __P((void));
130 void labelps __P((void));
131 void labels __P((void));
132 void labelswap __P((void));
133 void labeltcp __P((void));
134 void labeltcpsyn __P((void));
135 void netstat_all __P((char *));
136 void netstat_display __P((char *));
137 void netstat_ignore __P((char *));
138 void netstat_names __P((char *));
139 void netstat_numbers __P((char *));
140 void netstat_reset __P((char *));
141 void netstat_show __P((char *));
142 void netstat_tcp __P((char *));
143 void netstat_udp __P((char *));
144 void nlisterr __P((struct nlist []));
145 WINDOW *openbufcache __P((void));
146 WINDOW *openicmp __P((void));
147 WINDOW *openiostat __P((void));
148 WINDOW *openip __P((void));
149 WINDOW *openkre __P((void));
150 WINDOW *openmbufs __P((void));
151 WINDOW *opennetstat __P((void));
152 WINDOW *openpigs __P((void));
153 WINDOW *openswap __P((void));
154 WINDOW *opentcp __P((void));
155 void ps_user __P((char *));
156 void redraw __P((int));
157 void showbufcache __P((void));
158 void showicmp __P((void));
159 void showiostat __P((void));
160 void showip __P((void));
161 void showkre __P((void));
162 void showmbufs __P((void));
163 void shownetstat __P((void));
164 void showpigs __P((void));
165 void showps __P((void));
166 void showswap __P((void));
167 void showtcp __P((void));
168 void showtcpsyn __P((void));
169 void status __P((void));
170 void vmstat_boot __P((char *args));
171 void vmstat_run __P((char *args));
172 void vmstat_time __P((char *args));
173 void vmstat_zero __P((char *args));
174