Module Name: src
Committed By: pooka
Date: Mon Jan 25 00:24:23 UTC 2016
Modified Files:
src/sys/rump: README.compileopts
Added Files:
src/lib/librumpuser: README.compileopts
Log Message:
Move librumpuser compile-time options into the librumpuser source
directory. Those options apply only for the in-tree implementation.
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/lib/librumpuser/README.compileopts
cvs rdiff -u -r1.13 -r1.14 src/sys/rump/README.compileopts
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/README.compileopts
diff -u src/sys/rump/README.compileopts:1.13 src/sys/rump/README.compileopts:1.14
--- src/sys/rump/README.compileopts:1.13 Wed Jun 17 11:48:06 2015
+++ src/sys/rump/README.compileopts Mon Jan 25 00:24:23 2016
@@ -1,4 +1,4 @@
- $NetBSD: README.compileopts,v 1.13 2015/06/17 11:48:06 pooka Exp $
+ $NetBSD: README.compileopts,v 1.14 2016/01/25 00:24:23 pooka Exp $
This file describes compile-time options for rump kernels. Additionally,
NetBSD build options will have an effect. See src/share/mk/bsd.README
@@ -82,22 +82,6 @@ effect: Builds NetBSD COMPAT_nn code for
================================================================================
-Rumpuser options:
-
- RUMPUSER_THREADS
-
-values: pthread/none/fiber or <undefined>
-defval: <undefined>
-effect: Define the way threading is implemented in the rumpuser hypercall
- implmentation.
- <undefined> - use default implementation (currently "pthread")
- pthread - use pthreads to implement threading
- none - do not support kernel threads at all
- fiber - user a fiber interface, cooperatively scheduled contexts
-
-
-================================================================================
-
Per-component options:
RUMP_SYM_NORENAME
Added files:
Index: src/lib/librumpuser/README.compileopts
diff -u /dev/null src/lib/librumpuser/README.compileopts:1.1
--- /dev/null Mon Jan 25 00:24:23 2016
+++ src/lib/librumpuser/README.compileopts Mon Jan 25 00:24:23 2016
@@ -0,0 +1,19 @@
+ $NetBSD: README.compileopts,v 1.1 2016/01/25 00:24:23 pooka Exp $
+
+This file describes compile-time options (make variables) for
+the rumpuser POSIX implementation.
+
+Note: after changing an option, do a clean build.
+
+Global options:
+
+ RUMPUSER_THREADS
+
+values: pthread/none/fiber or <undefined>
+defval: <undefined>
+effect: Define the way threading is implemented in the rumpuser hypercall
+ implmentation.
+ <undefined> - use default implementation (currently "pthread")
+ pthread - use pthreads to implement threading
+ none - do not support kernel threads at all
+ fiber - user a fiber interface, cooperatively scheduled contexts