From 025e99bcd14fb33fb7a8d72bd6789a053eb511d5 Mon Sep 17 00:00:00 2001 From: bde Date: Wed, 30 Aug 1995 00:33:02 +0000 Subject: Fix several sysinit functions that had the wrong type and unnecessarily external linkage. Remove useless comments saying that SYSINIT() does system initialization. shm.c: Remove nearly useless comment that gave wrong pseudo-prototypes. --- sys/kern/sysv_shm.c | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) (limited to 'sys/kern/sysv_shm.c') diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c index 3c0fc35..a80d781 100644 --- a/sys/kern/sysv_shm.c +++ b/sys/kern/sysv_shm.c @@ -1,4 +1,4 @@ -/* $Id: sysv_shm.c,v 1.6 1995/07/29 11:40:15 bde Exp $ */ +/* $Id: sysv_shm.c,v 1.7 1995/08/28 09:18:48 julian Exp $ */ /* $NetBSD: sysv_shm.c,v 1.23 1994/07/04 23:25:12 glass Exp $ */ /* @@ -48,24 +48,7 @@ #include #include -/* - * Provides the following externally accessible functions: - * - * shminit(void); initialization - * shmexit(struct proc *) cleanup - * shmfork(struct proc *, struct proc *, int) fork handling - * shmsys(arg1, arg2, arg3, arg4); shm{at,ctl,dt,get}(arg2, arg3, arg4) - * - * Structures: - * shmsegs (an array of 'struct shmid_ds') - * per proc array of 'struct shmmap_state' - */ - -/* - * System initialization - */ - -extern void shminit(); /* should be static*/ +static void shminit __P((caddr_t)); SYSINIT(sysv_shm, SI_SUB_SYSV_SHM, SI_ORDER_FIRST, shminit, NULL) int oshmctl(); @@ -573,7 +556,8 @@ shmexit(p) } void -shminit() +shminit(udata) + caddr_t udata; { int i; vm_offset_t garbage1, garbage2; -- cgit v1.1