Module Name:    src
Committed By:   pooka
Date:           Fri Jan 28 18:45:52 UTC 2011

Modified Files:
        src/sys/rump/librump/rumpkern: rump.c

Log Message:
call procinit_sysctl to register the proc sysctl tree


To generate a diff of this commit:
cvs rdiff -u -r1.223 -r1.224 src/sys/rump/librump/rumpkern/rump.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpkern/rump.c
diff -u src/sys/rump/librump/rumpkern/rump.c:1.223 src/sys/rump/librump/rumpkern/rump.c:1.224
--- src/sys/rump/librump/rumpkern/rump.c:1.223	Fri Jan 28 16:58:28 2011
+++ src/sys/rump/librump/rumpkern/rump.c	Fri Jan 28 18:45:52 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump.c,v 1.223 2011/01/28 16:58:28 pooka Exp $	*/
+/*	$NetBSD: rump.c,v 1.224 2011/01/28 18:45:52 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.223 2011/01/28 16:58:28 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.224 2011/01/28 18:45:52 pooka Exp $");
 
 #include <sys/systm.h>
 #define ELFSIZE ARCH_ELFSIZE
@@ -392,6 +392,7 @@
 	devsw_init();
 	pipe_init();
 	resource_init();
+	procinit_sysctl();
 
 	/* start page baroness */
 	if (rump_threads) {

Reply via email to