From owner-freebsd-commit Sat Oct 7 19:00:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09946 for freebsd-commit-outgoing; Sat, 7 Oct 1995 19:00:34 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09934 for cvs-all-outgoing; Sat, 7 Oct 1995 19:00:31 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09924 for cvs-sys-outgoing; Sat, 7 Oct 1995 19:00:28 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id TAA09889 ; Sat, 7 Oct 1995 19:00:04 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id LAA11459; Sun, 8 Oct 1995 11:54:51 +1000 Date: Sun, 8 Oct 1995 11:54:51 +1000 From: Bruce Evans Message-Id: <199510080154.LAA11459@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org, swallace@freefall.freebsd.org Subject: Re: cvs commit: src/sys/sys systm.h Sender: owner-commit@FreeBSD.org Precedence: bulk >swallace 95/10/07 17:06:23 > Modified: sys/kern imgact_shell.c init_main.c kern_descrip.c > kern_exec.c kern_exit.c kern_fork.c kern_prot.c > vfs_bio.c vfs_syscalls.c > sys/sys systm.h > Log: > Remove prototype definitions from . > Prototypes are located in . > Add appropriate #include to files that needed > protos from systm.h. This duplicates work that I was waiting to commit. has to be included in 48 headers altogether. Sigh. > Add structure definitions to appropriate files that relied on sys/systm.h, > right before system call definition, as in the rest of the kernel source. Aren't the definitions in ? > In kern_prot.c, instead of using the dummy structure "args", create > individual dummy structures named _args. This makes > life easier for prototype generation. The extra fields that I added to syscalls.master were mostly to delay having to do this. They should be removed soon. Bruce