Module Name: src
Committed By: pooka
Date: Mon Oct 25 17:49:37 UTC 2010
Modified Files:
src/sys/rump/librump/rumpkern: rump.c
Log Message:
make printed string more accurate
To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 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.188 src/sys/rump/librump/rumpkern/rump.c:1.189
--- src/sys/rump/librump/rumpkern/rump.c:1.188 Tue Sep 7 21:11:10 2010
+++ src/sys/rump/librump/rumpkern/rump.c Mon Oct 25 17:49:36 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.c,v 1.188 2010/09/07 21:11:10 pooka Exp $ */
+/* $NetBSD: rump.c,v 1.189 2010/10/25 17:49:36 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.188 2010/09/07 21:11:10 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.189 2010/10/25 17:49:36 pooka Exp $");
#include <sys/systm.h>
#define ELFSIZE ARCH_ELFSIZE
@@ -240,7 +240,7 @@
}
#else
if (error == 0)
- printf("NCPU limited to 1 on this host\n");
+ printf("NCPU limited to 1 on this machine architecture\n");
numcpu = 1;
#endif
rump_cpus_bootstrap(numcpu);