makesyscalls.sh revision 1.29 1 1.1 glass #! /bin/sh -
2 1.29 thorpej # $NetBSD: makesyscalls.sh,v 1.29 1998/09/13 04:57:24 thorpej Exp $
3 1.9 cgd #
4 1.20 cgd # Copyright (c) 1994,1996 Christopher G. Demetriou
5 1.12 cgd # All rights reserved.
6 1.12 cgd #
7 1.12 cgd # Redistribution and use in source and binary forms, with or without
8 1.12 cgd # modification, are permitted provided that the following conditions
9 1.12 cgd # are met:
10 1.12 cgd # 1. Redistributions of source code must retain the above copyright
11 1.12 cgd # notice, this list of conditions and the following disclaimer.
12 1.12 cgd # 2. Redistributions in binary form must reproduce the above copyright
13 1.12 cgd # notice, this list of conditions and the following disclaimer in the
14 1.12 cgd # documentation and/or other materials provided with the distribution.
15 1.12 cgd # 3. All advertising materials mentioning features or use of this software
16 1.12 cgd # must display the following acknowledgement:
17 1.12 cgd # This product includes software developed for the NetBSD Project
18 1.12 cgd # by Christopher G. Demetriou.
19 1.12 cgd # 4. The name of the author may not be used to endorse or promote products
20 1.12 cgd # derived from this software without specific prior written permission
21 1.12 cgd #
22 1.12 cgd # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.12 cgd # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.12 cgd # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.12 cgd # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.12 cgd # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.12 cgd # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.12 cgd # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.12 cgd # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.12 cgd # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.12 cgd # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.14 cgd
33 1.14 cgd # @(#)makesyscalls.sh 8.1 (Berkeley) 6/10/93
34 1.1 glass
35 1.1 glass set -e
36 1.1 glass
37 1.11 cgd case $# in
38 1.11 cgd 2) ;;
39 1.11 cgd *) echo "Usage: $0 config-file input-file" 1>&2
40 1.11 cgd exit 1
41 1.11 cgd ;;
42 1.11 cgd esac
43 1.11 cgd
44 1.11 cgd # source the config file.
45 1.11 cgd . $1
46 1.11 cgd
47 1.11 cgd # the config file sets the following variables:
48 1.11 cgd # sysnames the syscall names file
49 1.11 cgd # sysnumhdr the syscall numbers file
50 1.11 cgd # syssw the syscall switch file
51 1.11 cgd # sysarghdr the syscall argument struct definitions
52 1.11 cgd # compatopts those syscall types that are for 'compat' syscalls
53 1.11 cgd # switchname the name for the 'struct sysent' we define
54 1.11 cgd # namesname the name for the 'char *[]' we define
55 1.11 cgd # constprefix the prefix for the system call constants
56 1.11 cgd #
57 1.11 cgd # NOTE THAT THIS makesyscalls.sh DOES NOT SUPPORT 'LIBCOMPAT'.
58 1.1 glass
59 1.1 glass # tmp files:
60 1.1 glass sysdcl="sysent.dcl"
61 1.16 thorpej sysprotos="sys.protos"
62 1.11 cgd syscompat_pref="sysent."
63 1.1 glass sysent="sysent.switch"
64 1.27 thorpej sysnamesbottom="sysnames.bottom"
65 1.1 glass
66 1.27 thorpej trap "rm $sysdcl $sysprotos $sysent $sysnamesbottom" 0
67 1.11 cgd
68 1.11 cgd # Awk program (must support nawk extensions)
69 1.11 cgd # Use "awk" at Berkeley, "nawk" or "gawk" elsewhere.
70 1.11 cgd awk=${AWK:-awk}
71 1.11 cgd
72 1.11 cgd # Does this awk have a "toupper" function? (i.e. is it GNU awk)
73 1.11 cgd isgawk=`$awk 'BEGIN { print toupper("true"); exit; }' 2>/dev/null`
74 1.11 cgd
75 1.11 cgd # If this awk does not define "toupper" then define our own.
76 1.11 cgd if [ "$isgawk" = TRUE ] ; then
77 1.11 cgd # GNU awk provides it.
78 1.11 cgd toupper=
79 1.11 cgd else
80 1.11 cgd # Provide our own toupper()
81 1.11 cgd toupper='
82 1.11 cgd function toupper(str) {
83 1.11 cgd _toupper_cmd = "echo "str" |tr a-z A-Z"
84 1.11 cgd _toupper_cmd | getline _toupper_str;
85 1.11 cgd close(_toupper_cmd);
86 1.11 cgd return _toupper_str;
87 1.11 cgd }'
88 1.11 cgd fi
89 1.11 cgd
90 1.11 cgd # before handing it off to awk, make a few adjustments:
91 1.11 cgd # (1) insert spaces around {, }, (, ), *, and commas.
92 1.11 cgd # (2) get rid of any and all dollar signs (so that rcs id use safe)
93 1.11 cgd #
94 1.11 cgd # The awk script will deal with blank lines and lines that
95 1.11 cgd # start with the comment character (';').
96 1.1 glass
97 1.11 cgd sed -e '
98 1.11 cgd s/\$//g
99 1.11 cgd :join
100 1.11 cgd /\\$/{a\
101 1.11 cgd
102 1.11 cgd N
103 1.11 cgd s/\\\n//
104 1.11 cgd b join
105 1.11 cgd }
106 1.11 cgd 2,${
107 1.11 cgd /^#/!s/\([{}()*,]\)/ \1 /g
108 1.11 cgd }
109 1.11 cgd ' < $2 | $awk "
110 1.11 cgd $toupper
111 1.11 cgd BEGIN {
112 1.18 cgd # to allow nested #if/#else/#endif sets
113 1.18 cgd savedepth = 0
114 1.18 cgd
115 1.11 cgd sysnames = \"$sysnames\"
116 1.16 thorpej sysprotos = \"$sysprotos\"
117 1.11 cgd sysnumhdr = \"$sysnumhdr\"
118 1.11 cgd sysarghdr = \"$sysarghdr\"
119 1.11 cgd switchname = \"$switchname\"
120 1.11 cgd namesname = \"$namesname\"
121 1.11 cgd constprefix = \"$constprefix\"
122 1.11 cgd
123 1.11 cgd sysdcl = \"$sysdcl\"
124 1.11 cgd syscompat_pref = \"$syscompat_pref\"
125 1.11 cgd sysent = \"$sysent\"
126 1.27 thorpej sysnamesbottom = \"$sysnamesbottom\"
127 1.11 cgd infile = \"$2\"
128 1.11 cgd
129 1.11 cgd compatopts = \"$compatopts\"
130 1.11 cgd "'
131 1.11 cgd
132 1.25 thorpej printf "/*\t\$NetBSD\$\t*/\n\n" > sysdcl
133 1.11 cgd printf "/*\n * System call switch table.\n *\n" > sysdcl
134 1.11 cgd printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysdcl
135 1.11 cgd
136 1.11 cgd ncompat = split(compatopts,compat)
137 1.11 cgd for (i = 1; i <= ncompat; i++) {
138 1.11 cgd compat_upper[i] = toupper(compat[i])
139 1.11 cgd
140 1.17 mycroft printf "\n#ifdef %s\n", compat_upper[i] > sysent
141 1.17 mycroft printf "#define %s(func) __CONCAT(%s_,func)\n", compat[i], \
142 1.17 mycroft compat[i] > sysent
143 1.17 mycroft printf "#else\n" > sysent
144 1.17 mycroft printf "#define %s(func) sys_nosys\n", compat[i] > sysent
145 1.17 mycroft printf "#endif\n" > sysent
146 1.11 cgd }
147 1.11 cgd
148 1.17 mycroft printf "\n#define\ts(type)\tsizeof(type)\n\n" > sysent
149 1.17 mycroft printf "struct sysent %s[] = {\n",switchname > sysent
150 1.17 mycroft
151 1.25 thorpej printf "/*\t\$NetBSD\$\t*/\n\n" > sysnames
152 1.11 cgd printf "/*\n * System call names.\n *\n" > sysnames
153 1.11 cgd printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysnames
154 1.11 cgd
155 1.16 thorpej printf "\n/*\n * System call prototypes.\n */\n\n" > sysprotos
156 1.16 thorpej
157 1.25 thorpej printf "/*\t\$NetBSD\$\t*/\n\n" > sysnumhdr
158 1.11 cgd printf "/*\n * System call numbers.\n *\n" > sysnumhdr
159 1.11 cgd printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysnumhdr
160 1.11 cgd
161 1.25 thorpej printf "/*\t\$NetBSD\$\t*/\n\n" > sysarghdr
162 1.13 mycroft printf "/*\n * System call argument lists.\n *\n" > sysarghdr
163 1.11 cgd printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysarghdr
164 1.11 cgd }
165 1.11 cgd NR == 1 {
166 1.11 cgd printf " * created from%s\n */\n\n", $0 > sysdcl
167 1.11 cgd
168 1.11 cgd printf " * created from%s\n */\n\n", $0 > sysnames
169 1.28 thorpej
170 1.28 thorpej # System call names are included by userland (kdump(1)), so
171 1.28 thorpej # hide the include files from it.
172 1.28 thorpej printf "#if defined(_KERNEL) && !defined(_LKM)\n" > sysnames
173 1.28 thorpej
174 1.28 thorpej printf "#endif /* _KERNEL && ! _LKM */\n\n" > sysnamesbottom
175 1.28 thorpej printf "char *%s[] = {\n",namesname > sysnamesbottom
176 1.11 cgd
177 1.11 cgd printf " * created from%s\n */\n\n", $0 > sysnumhdr
178 1.11 cgd
179 1.11 cgd printf " * created from%s\n */\n\n", $0 > sysarghdr
180 1.11 cgd printf "#define\tsyscallarg(x)\tunion { x datum; register_t pad; }\n" \
181 1.11 cgd > sysarghdr
182 1.11 cgd next
183 1.11 cgd }
184 1.11 cgd NF == 0 || $1 ~ /^;/ {
185 1.11 cgd next
186 1.11 cgd }
187 1.11 cgd $1 ~ /^#[ ]*include/ {
188 1.11 cgd print > sysdcl
189 1.27 thorpej print > sysnames
190 1.11 cgd next
191 1.11 cgd }
192 1.11 cgd $1 ~ /^#[ ]*if/ {
193 1.11 cgd print > sysent
194 1.16 thorpej print > sysprotos
195 1.27 thorpej print > sysnamesbottom
196 1.18 cgd savesyscall[++savedepth] = syscall
197 1.11 cgd next
198 1.11 cgd }
199 1.11 cgd $1 ~ /^#[ ]*else/ {
200 1.11 cgd print > sysent
201 1.16 thorpej print > sysprotos
202 1.27 thorpej print > sysnamesbottom
203 1.18 cgd if (savedepth <= 0) {
204 1.18 cgd printf "%s: line %d: unbalenced #else\n", \
205 1.18 cgd infile, NR
206 1.18 cgd exit 1
207 1.18 cgd }
208 1.18 cgd syscall = savesyscall[savedepth]
209 1.11 cgd next
210 1.11 cgd }
211 1.11 cgd $1 ~ /^#/ {
212 1.18 cgd if ($1 ~ /^#[ ]*endif/) {
213 1.18 cgd if (savedepth <= 0) {
214 1.18 cgd printf "%s: line %d: unbalenced #endif\n", \
215 1.18 cgd infile, NR
216 1.18 cgd exit 1
217 1.18 cgd }
218 1.18 cgd savedepth--;
219 1.18 cgd }
220 1.11 cgd print > sysent
221 1.16 thorpej print > sysprotos
222 1.27 thorpej print > sysnamesbottom
223 1.11 cgd next
224 1.11 cgd }
225 1.11 cgd syscall != $1 {
226 1.11 cgd printf "%s: line %d: syscall number out of sync at %d\n", \
227 1.11 cgd infile, NR, syscall
228 1.11 cgd printf "line is:\n"
229 1.11 cgd print
230 1.11 cgd exit 1
231 1.11 cgd }
232 1.11 cgd function parserr(was, wanted) {
233 1.11 cgd printf "%s: line %d: unexpected %s (expected %s)\n", \
234 1.11 cgd infile, NR, was, wanted
235 1.11 cgd exit 1
236 1.11 cgd }
237 1.11 cgd function parseline() {
238 1.11 cgd f=3 # toss number and type
239 1.11 cgd if ($NF != "}") {
240 1.11 cgd funcalias=$NF
241 1.11 cgd end=NF-1
242 1.11 cgd } else {
243 1.11 cgd funcalias=""
244 1.11 cgd end=NF
245 1.11 cgd }
246 1.11 cgd if ($f != "{")
247 1.11 cgd parserr($f, "{")
248 1.11 cgd f++
249 1.11 cgd if ($end != "}")
250 1.11 cgd parserr($end, "}")
251 1.11 cgd end--
252 1.11 cgd if ($end != ";")
253 1.11 cgd parserr($end, ";")
254 1.11 cgd end--
255 1.11 cgd if ($end != ")")
256 1.11 cgd parserr($end, ")")
257 1.11 cgd end--
258 1.11 cgd
259 1.19 cgd returntype = oldf = "";
260 1.19 cgd do {
261 1.19 cgd if (returntype != "" && oldf != "*")
262 1.19 cgd returntype = returntype" ";
263 1.19 cgd returntype = returntype$f;
264 1.19 cgd oldf = $f;
265 1.19 cgd f++
266 1.19 cgd } while (f < (end - 1) && $(f+1) != "(");
267 1.19 cgd if (f == (end - 1)) {
268 1.19 cgd parserr($f, "function argument definition (maybe \"(\"?)");
269 1.19 cgd }
270 1.11 cgd
271 1.11 cgd funcname=$f
272 1.17 mycroft if (funcalias == "") {
273 1.11 cgd funcalias=funcname
274 1.17 mycroft sub(/^([^_]+_)*sys_/, "", funcalias)
275 1.17 mycroft }
276 1.11 cgd f++
277 1.11 cgd
278 1.11 cgd if ($f != "(")
279 1.11 cgd parserr($f, ")")
280 1.11 cgd f++
281 1.11 cgd
282 1.19 cgd argc=0;
283 1.11 cgd if (f == end) {
284 1.11 cgd if ($f != "void")
285 1.11 cgd parserr($f, "argument definition")
286 1.19 cgd isvarargs = 0;
287 1.19 cgd varargc = 0;
288 1.11 cgd return
289 1.11 cgd }
290 1.11 cgd
291 1.19 cgd # some system calls (open() and fcntl()) can accept a variable
292 1.19 cgd # number of arguments. If syscalls accept a variable number of
293 1.19 cgd # arguments, they must still have arguments specified for
294 1.19 cgd # the remaining argument "positions," because of the way the
295 1.19 cgd # kernel system call argument handling works.
296 1.19 cgd #
297 1.19 cgd # Indirect system calls, e.g. syscall(), are exceptions to this
298 1.19 cgd # rule, since they are handled entirely by machine-dependent code
299 1.19 cgd # and do not need argument structures built.
300 1.19 cgd
301 1.19 cgd isvarargs = 0;
302 1.11 cgd while (f <= end) {
303 1.19 cgd if ($f == "...") {
304 1.19 cgd f++;
305 1.19 cgd isvarargs = 1;
306 1.19 cgd varargc = argc;
307 1.19 cgd continue;
308 1.19 cgd }
309 1.11 cgd argc++
310 1.11 cgd argtype[argc]=""
311 1.14 cgd oldf=""
312 1.11 cgd while (f < end && $(f+1) != ",") {
313 1.14 cgd if (argtype[argc] != "" && oldf != "*")
314 1.11 cgd argtype[argc] = argtype[argc]" ";
315 1.11 cgd argtype[argc] = argtype[argc]$f;
316 1.14 cgd oldf = $f;
317 1.11 cgd f++
318 1.11 cgd }
319 1.11 cgd if (argtype[argc] == "")
320 1.11 cgd parserr($f, "argument definition")
321 1.11 cgd argname[argc]=$f;
322 1.11 cgd f += 2; # skip name, and any comma
323 1.11 cgd }
324 1.19 cgd # must see another argument after varargs notice.
325 1.19 cgd if (isvarargs) {
326 1.19 cgd if (argc == varargc && $2 != "INDIR")
327 1.19 cgd parserr($f, "argument definition")
328 1.19 cgd } else
329 1.19 cgd varargc = argc;
330 1.11 cgd }
331 1.17 mycroft function putent(nodefs, compatwrap) {
332 1.21 cgd # output syscall declaration for switch table. INDIR functions
333 1.21 cgd # get none, since they always have sys_nosys() for their table
334 1.21 cgd # entries.
335 1.21 cgd if (nodefs != "INDIR") {
336 1.21 cgd prototype = "__P((struct proc *, void *, register_t *))"
337 1.21 cgd if (compatwrap == "")
338 1.21 cgd printf("int\t%s\t%s;\n", funcname,
339 1.21 cgd prototype) > sysprotos
340 1.21 cgd else
341 1.21 cgd printf("int\t%s_%s\t%s;\n", compatwrap, funcname,
342 1.21 cgd prototype) > sysprotos
343 1.21 cgd }
344 1.11 cgd
345 1.11 cgd # output syscall switch entry
346 1.19 cgd if (nodefs == "INDIR") {
347 1.21 cgd printf("\t{ 0, 0,\n\t sys_nosys },\t\t\t/* %d = %s (indir) */\n", \
348 1.21 cgd syscall, funcalias) > sysent
349 1.19 cgd } else {
350 1.19 cgd # printf("\t{ { %d", argc) > sysent
351 1.19 cgd # for (i = 1; i <= argc; i++) {
352 1.19 cgd # if (i == 5) # wrap the line
353 1.19 cgd # printf(",\n\t ") > sysent
354 1.19 cgd # else
355 1.19 cgd # printf(", ") > sysent
356 1.19 cgd # printf("s(%s)", argtypenospc[i]) > sysent
357 1.19 cgd # }
358 1.19 cgd printf("\t{ %d, ", argc) > sysent
359 1.19 cgd if (argc == 0)
360 1.19 cgd printf("0") > sysent
361 1.19 cgd else if (compatwrap == "")
362 1.19 cgd printf("s(struct %s_args)", funcname) > sysent
363 1.19 cgd else
364 1.19 cgd printf("s(struct %s_%s_args)", compatwrap,
365 1.19 cgd funcname) > sysent
366 1.19 cgd if (compatwrap == "")
367 1.19 cgd wfn = sprintf("%s", funcname);
368 1.19 cgd else
369 1.19 cgd wfn = sprintf("%s(%s)", compatwrap, funcname);
370 1.19 cgd printf(",\n\t %s },", wfn) > sysent
371 1.19 cgd for (i = 0; i < (33 - length(wfn)) / 8; i++)
372 1.19 cgd printf("\t") > sysent
373 1.19 cgd if (compatwrap == "")
374 1.19 cgd printf("/* %d = %s */\n", syscall, funcalias) > sysent
375 1.19 cgd else
376 1.19 cgd printf("/* %d = %s %s */\n", syscall, compatwrap,
377 1.19 cgd funcalias) > sysent
378 1.19 cgd }
379 1.11 cgd
380 1.11 cgd # output syscall name for names table
381 1.11 cgd if (compatwrap == "")
382 1.11 cgd printf("\t\"%s\",\t\t\t/* %d = %s */\n", funcalias, syscall,
383 1.27 thorpej funcalias) > sysnamesbottom
384 1.11 cgd else
385 1.11 cgd printf("\t\"%s_%s\",\t/* %d = %s %s */\n", compatwrap,
386 1.27 thorpej funcalias, syscall, compatwrap, funcalias) > sysnamesbottom
387 1.11 cgd
388 1.11 cgd # output syscall number of header, if appropriate
389 1.19 cgd if (nodefs == "" || nodefs == "NOARGS" || nodefs == "INDIR") {
390 1.19 cgd # output a prototype, to be used to generate lint stubs in
391 1.19 cgd # libc.
392 1.19 cgd printf("/* syscall: \"%s\" ret: \"%s\" args:", funcalias,
393 1.19 cgd returntype) > sysnumhdr
394 1.19 cgd for (i = 1; i <= varargc; i++)
395 1.19 cgd printf(" \"%s\"", argtype[i]) > sysnumhdr
396 1.19 cgd if (isvarargs)
397 1.19 cgd printf(" \"...\"") > sysnumhdr
398 1.19 cgd printf(" */\n") > sysnumhdr
399 1.19 cgd
400 1.19 cgd printf("#define\t%s%s\t%d\n\n", constprefix, funcalias,
401 1.11 cgd syscall) > sysnumhdr
402 1.29 thorpej } else if (nodefs == "COMPAT") {
403 1.29 thorpej # Just define the syscall number with a comment. These
404 1.29 thorpej # may be used by compatibility stubs in libc.
405 1.29 thorpej printf("#define\t%s%s_%s\t%d\n\n",
406 1.29 thorpej constprefix, compatwrap, funcalias, syscall) > sysnumhdr
407 1.19 cgd } else if (nodefs != "NODEF")
408 1.19 cgd printf("\t\t\t\t/* %d is %s %s */\n\n", syscall,
409 1.11 cgd compatwrap, funcalias) > sysnumhdr
410 1.11 cgd
411 1.11 cgd # output syscall argument structure, if it has arguments
412 1.21 cgd if (argc != 0 && nodefs != "NOARGS" && nodefs != "INDIR") {
413 1.11 cgd if (compatwrap == "")
414 1.11 cgd printf("\nstruct %s_args {\n", funcname) > sysarghdr
415 1.11 cgd else
416 1.11 cgd printf("\nstruct %s_%s_args {\n", compatwrap,
417 1.11 cgd funcname) > sysarghdr
418 1.11 cgd for (i = 1; i <= argc; i++)
419 1.11 cgd printf("\tsyscallarg(%s) %s;\n", argtype[i],
420 1.11 cgd argname[i]) > sysarghdr
421 1.11 cgd printf("};\n") > sysarghdr
422 1.11 cgd }
423 1.11 cgd }
424 1.11 cgd $2 == "STD" {
425 1.11 cgd parseline()
426 1.17 mycroft putent("", "");
427 1.11 cgd syscall++
428 1.11 cgd next
429 1.11 cgd }
430 1.19 cgd $2 == "NODEF" || $2 == "NOARGS" || $2 == "INDIR" {
431 1.11 cgd parseline()
432 1.17 mycroft putent($2, "")
433 1.11 cgd syscall++
434 1.11 cgd next
435 1.11 cgd }
436 1.11 cgd $2 == "OBSOL" || $2 == "UNIMPL" {
437 1.11 cgd if ($2 == "OBSOL")
438 1.11 cgd comment="obsolete"
439 1.11 cgd else
440 1.11 cgd comment="unimplemented"
441 1.11 cgd for (i = 3; i <= NF; i++)
442 1.11 cgd comment=comment " " $i
443 1.11 cgd
444 1.17 mycroft printf("\t{ 0, 0,\n\t sys_nosys },\t\t\t/* %d = %s */\n", \
445 1.11 cgd syscall, comment) > sysent
446 1.11 cgd printf("\t\"#%d (%s)\",\t\t/* %d = %s */\n", \
447 1.27 thorpej syscall, comment, syscall, comment) > sysnamesbottom
448 1.11 cgd if ($2 != "UNIMPL")
449 1.11 cgd printf("\t\t\t\t/* %d is %s */\n", syscall, comment) > sysnumhdr
450 1.11 cgd syscall++
451 1.11 cgd next
452 1.11 cgd }
453 1.11 cgd {
454 1.11 cgd for (i = 1; i <= ncompat; i++) {
455 1.11 cgd if ($2 == compat_upper[i]) {
456 1.11 cgd parseline();
457 1.29 thorpej putent("COMPAT", compat[i])
458 1.11 cgd syscall++
459 1.11 cgd next
460 1.11 cgd }
461 1.11 cgd }
462 1.11 cgd printf "%s: line %d: unrecognized keyword %s\n", infile, NR, $2
463 1.1 glass exit 1
464 1.11 cgd }
465 1.11 cgd END {
466 1.11 cgd printf("};\n\n") > sysent
467 1.27 thorpej printf("};\n") > sysnamesbottom
468 1.15 christos printf("#define\t%sMAXSYSCALL\t%d\n", constprefix, syscall) > sysnumhdr
469 1.11 cgd } '
470 1.1 glass
471 1.17 mycroft cat $sysprotos >> $sysarghdr
472 1.16 thorpej cat $sysdcl $sysent > $syssw
473 1.27 thorpej cat $sysnamesbottom >> $sysnames
474 1.1 glass
475 1.15 christos #chmod 444 $sysnames $sysnumhdr $syssw
476