NetBSD/lib/librumpuser
pooka 9331c560dd Move librumpuser compile-time options into the librumpuser source
directory.  Those options apply only for the in-tree implementation.
2016-01-25 00:24:23 +00:00
..
build-aux
configure check for utimensat 2015-03-05 00:25:39 +00:00
configure.ac check for utimensat 2015-03-05 00:25:39 +00:00
Makefile Define _KERNTYPES for things that need it. 2016-01-23 21:22:45 +00:00
README.compileopts Move librumpuser compile-time options into the librumpuser source 2016-01-25 00:24:23 +00:00
rumpfiber_bio.c
rumpfiber_sp.c
rumpfiber.c
rumpfiber.h
rumpuser_bio.c
rumpuser_component.c
rumpuser_component.h
rumpuser_config.h.in check for utimensat 2015-03-05 00:25:39 +00:00
rumpuser_daemonize.c
rumpuser_dl.c
rumpuser_errtrans.c
rumpuser_file.c
rumpuser_int.h
rumpuser_mem.c
rumpuser_port.h Add the C11 function aligned_alloc to libc. 2015-11-07 16:21:42 +00:00
rumpuser_pth_dummy.c
rumpuser_pth.c Fix typos to match values from rumpuser_config.h 2015-09-18 10:56:25 +00:00
rumpuser_random.c
rumpuser_sigtrans.c
rumpuser_sp.c Hurd support, part 1 2015-08-16 11:37:39 +00:00
rumpuser.c Fix return value inspection for clock_nanosleep() (not displayed in the 2015-08-16 11:05:06 +00:00
shlib_version
sp_common.c

        $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