Remove shmsegs declaration from conf/param.c - it doesn't belong here.

Instead, put it in kern/sysv_shm.c.
This commit is contained in:
simonb 2000-04-15 16:49:35 +00:00
parent 3bd4f105d9
commit dd06794f0b
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.c,v 1.34 2000/03/28 05:14:03 simonb Exp $ */
/* $NetBSD: param.c,v 1.35 2000/04/15 16:49:35 simonb Exp $ */
/*
* Copyright (c) 1980, 1986, 1989 Regents of the University of California.
@ -141,7 +141,6 @@ struct shminfo shminfo = {
SHMSEG,
SHMALL
};
struct shmid_ds *shmsegs;
#endif
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: sysv_shm.c,v 1.54 2000/03/26 20:42:45 kleink Exp $ */
/* $NetBSD: sysv_shm.c,v 1.55 2000/04/15 16:49:40 simonb Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -106,7 +106,8 @@ struct shmid_ds *shm_find_segment_by_shmid __P((int));
#define SHMSEG_ALLOCATED 0x0800
#define SHMSEG_WANTED 0x1000
int shm_last_free, shm_nused, shm_committed;
int shm_last_free, shm_nused, shm_committed;
struct shmid_ds *shmsegs;
struct shm_handle {
struct uvm_object *shm_object;