NetBSD/lib/librumpuser
maya 57f1116306 Revert previous. it shouldn't have an effect.
$$ should make it sufficiently unique.
2016-10-19 09:51:38 +00:00
..
build-aux Revert previous. it shouldn't have an effect. 2016-10-19 09:51:38 +00:00
configure
configure.ac
Makefile
README.compileopts
rumpfiber_bio.c
rumpfiber_sp.c
rumpfiber.c
rumpfiber.h
rumpuser_bio.c
rumpuser_component.c
rumpuser_component.h
rumpuser_config.h.in
rumpuser_daemonize.c
rumpuser_dl.c
rumpuser_errtrans.c
rumpuser_file.c
rumpuser_int.h
rumpuser_mem.c
rumpuser_port.h
rumpuser_pth_dummy.c
rumpuser_pth.c
rumpuser_random.c
rumpuser_sigtrans.c
rumpuser_sp.c Redo previous by avoiding the casts and using PRIxREGISTER instead 2016-09-06 07:45:41 +00:00
rumpuser.c
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