Module Name:    src
Committed By:   pooka
Date:           Sun Mar  3 13:11:33 UTC 2013

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

Log Message:
Add a dummy component to ensure that at least one component is present
in every possible rump kernel configuration.


To generate a diff of this commit:
cvs rdiff -u -r1.251 -r1.252 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.251 src/sys/rump/librump/rumpkern/rump.c:1.252
--- src/sys/rump/librump/rumpkern/rump.c:1.251	Tue Feb 19 09:04:54 2013
+++ src/sys/rump/librump/rumpkern/rump.c	Sun Mar  3 13:11:33 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump.c,v 1.251 2013/02/19 09:04:54 martin Exp $	*/
+/*	$NetBSD: rump.c,v 1.252 2013/03/03 13:11:33 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007-2011 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.251 2013/02/19 09:04:54 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.252 2013/03/03 13:11:33 pooka Exp $");
 
 #include <sys/systm.h>
 #define ELFSIZE ARCH_ELFSIZE
@@ -208,6 +208,15 @@ rump_daemonize_done(int error)
 	return rumpuser_daemonize_done(error);
 }
 
+RUMP_COMPONENT(RUMP_COMPONENT_POSTINIT)
+{
+
+	/*
+	 * dummy component to make sure at least one component is
+	 * present in every possible rump kernel configuration
+	 */
+}
+
 int
 rump__init(int rump_version)
 {

Reply via email to