summaryrefslogtreecommitdiff
path: root/sys/alpha
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-04-02 08:47:17 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-04-02 08:47:17 +0000
commit798540aa11ccbbe6d719c551583197d877c73b1f (patch)
tree69f32c4b349282f18c6781dbbeaab2fc2d2457c5 /sys/alpha
parente6231132e9e1fc835431c10ad9ff138639fd543a (diff)
Notes
Diffstat (limited to 'sys/alpha')
-rw-r--r--sys/alpha/alpha/machdep.c7
-rw-r--r--sys/alpha/include/vmparam.h8
2 files changed, 0 insertions, 15 deletions
diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c
index 3400743ae316..5251471bcba1 100644
--- a/sys/alpha/alpha/machdep.c
+++ b/sys/alpha/alpha/machdep.c
@@ -140,10 +140,6 @@
#include <miscfs/procfs/procfs.h>
#include <machine/sigframe.h>
-#ifdef SYSVSHM
-#include <sys/shm.h>
-#endif
-
#ifdef SYSVMSG
#include <sys/msg.h>
#endif
@@ -331,9 +327,6 @@ again:
valloc(callout, struct callout, ncallout);
valloc(callwheel, struct callout_tailq, callwheelsize);
-#ifdef SYSVSHM
- valloc(shmsegs, struct shmid_ds, shminfo.shmmni);
-#endif
#ifdef SYSVSEM
valloc(sema, struct semid_ds, seminfo.semmni);
valloc(sem, struct sem, seminfo.semmns);
diff --git a/sys/alpha/include/vmparam.h b/sys/alpha/include/vmparam.h
index b055549c3ab8..bd085539ad93 100644
--- a/sys/alpha/include/vmparam.h
+++ b/sys/alpha/include/vmparam.h
@@ -95,14 +95,6 @@
#endif
/*
- * PTEs for system V style shared memory.
- * This is basically slop for kmempt which we actually allocate (malloc) from.
- */
-#ifndef SHMMAXPGS
-#define SHMMAXPGS 1024 /* 8mb */
-#endif
-
-/*
* Boundary at which to place first MAPMEM segment if not explicitly
* specified. Should be a power of two. This allows some slop for
* the data segment to grow underneath the first mapped segment.