summaryrefslogtreecommitdiffstats
path: root/sys/kern/init_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r--sys/kern/init_main.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 2a870ed..146c0e3 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)init_main.c 8.9 (Berkeley) 1/21/94
- * $Id: init_main.c,v 1.8 1994/09/01 05:12:37 davidg Exp $
+ * $Id: init_main.c,v 1.9 1994/09/01 11:20:11 davidg Exp $
*/
#include <sys/param.h>
@@ -239,6 +239,21 @@ main(framep)
/* Initialize clists. */
clist_init();
+#ifdef SYSVSHM
+ /* Initialize System V style shared memory. */
+ shminit();
+#endif
+
+#ifdef SYSVSEM
+ /* Initialize System V style semaphores. */
+ seminit();
+#endif
+
+#ifdef SYSVMSG
+ /* Initialize System V style message queues. */
+ msginit();
+#endif
+
/*
* Attach pseudo-devices.
*/
OpenPOWER on IntegriCloud