Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Move librumpuser compile-time options into the librumpuser s...



details:   https://anonhg.NetBSD.org/src/rev/4f12b5efce6b
branches:  trunk
changeset: 343210:4f12b5efce6b
user:      pooka <pooka%NetBSD.org@localhost>
date:      Mon Jan 25 00:24:23 2016 +0000

description:
Move librumpuser compile-time options into the librumpuser source
directory.  Those options apply only for the in-tree implementation.

diffstat:

 lib/librumpuser/README.compileopts |  19 +++++++++++++++++++
 sys/rump/README.compileopts        |  18 +-----------------
 2 files changed, 20 insertions(+), 17 deletions(-)

diffs (55 lines):

diff -r 7487e135acad -r 4f12b5efce6b lib/librumpuser/README.compileopts
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/librumpuser/README.compileopts        Mon Jan 25 00:24:23 2016 +0000
@@ -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
diff -r 7487e135acad -r 4f12b5efce6b sys/rump/README.compileopts
--- a/sys/rump/README.compileopts       Sun Jan 24 22:50:23 2016 +0000
+++ b/sys/rump/README.compileopts       Mon Jan 25 00:24:23 2016 +0000
@@ -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 @@
 
 ================================================================================
 
-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



Home | Main Index | Thread Index | Old Index