aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-03-30 07:17:05 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-03-30 07:17:05 +0000
commit255108f3858cfd52a63f212ede22059709e926af (patch)
treed0630e0309725b6c29350333ef2318b52f70cebb /sys/amd64
parent27361f297c5b962cb750daf728906674a286df77 (diff)
Notes
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/amd64/machdep.c7
-rw-r--r--sys/amd64/include/vmparam.h7
2 files changed, 0 insertions, 14 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index b1fd32ad985c..f46d9ec385f1 100644
--- a/sys/amd64/amd64/machdep.c
+++ b/sys/amd64/amd64/machdep.c
@@ -73,10 +73,6 @@
#include <sys/vmmeter.h>
#include <sys/bus.h>
-#ifdef SYSVSHM
-#include <sys/shm.h>
-#endif
-
#ifdef SYSVMSG
#include <sys/msg.h>
#endif
@@ -329,9 +325,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/amd64/include/vmparam.h b/sys/amd64/include/vmparam.h
index 0a5847dd5ff6..b1081245ec4b 100644
--- a/sys/amd64/include/vmparam.h
+++ b/sys/amd64/include/vmparam.h
@@ -72,13 +72,6 @@
#define USRTEXT (1*PAGE_SIZE) /* base of user text XXX bogus */
/*
- * Size of the Shared Memory Pages page table.
- */
-#ifndef SHMMAXPGS
-#define SHMMAXPGS 1024 /* XXX until we have more kmap space */
-#endif
-
-/*
* The time for a process to be blocked before being very swappable.
* This is a number of seconds which the system takes as being a non-trivial
* amount of real time. You probably shouldn't change this;