NameDateSize

..Today4 KiB

build-aux/H10-Nov-2025118

configureH A D16-Oct-2024147.7 KiB

configure.acH A D16-Oct-20243 KiB

MakefileH A D03-Jun-20231.4 KiB

README.compileoptsH A D05-Jul-2023798

rumpfiber.cH A D27-Dec-201720.1 KiB

rumpfiber.hH A D15-Feb-20152.4 KiB

rumpfiber_bio.cH A D04-Nov-20142.2 KiB

rumpfiber_sp.cH A D15-Feb-20152.4 KiB

rumpuser.cH A D24-Sep-20235.5 KiB

rumpuser_bio.cH A D04-Nov-20144.6 KiB

rumpuser_component.cH A D07-May-20132.8 KiB

rumpuser_component.hH A D30-Apr-20131.8 KiB

rumpuser_config.h.inH A D16-Oct-20244.3 KiB

rumpuser_daemonize.cH A D04-Apr-20244.1 KiB

rumpuser_dl.cH A D19-Apr-202213.6 KiB

rumpuser_errtrans.cH A D30-Apr-20136.1 KiB

rumpuser_file.cH A D16-Oct-20247.3 KiB

rumpuser_int.hH A D19-Apr-20223 KiB

rumpuser_mem.cH A D24-Aug-20142.7 KiB

rumpuser_port.hH A D16-Oct-20247.1 KiB

rumpuser_pth.cH A D27-Oct-202515.7 KiB

rumpuser_pth_dummy.cH A D18-Aug-20255.3 KiB

rumpuser_random.cH A D04-Nov-20142.5 KiB

rumpuser_sigtrans.cH A D20-Feb-20142.2 KiB

rumpuser_sp.cH A D06-May-202029.2 KiB

shlib_versionH A D01-Mar-2013120

sp_common.cH A D02-Apr-202516.7 KiB

README.compileopts

1        $NetBSD: README.compileopts,v 1.3 2023/07/05 16:40:33 lukem Exp $
2
3This file describes compile-time options (make variables) for
4the rumpuser POSIX implementation.
5
6Additionally, NetBSD build options will have an effect; see mk.conf(5)
7and src/share/mk/bsd.README for a description of NetBSD build options.
8
9Note: after changing an option, do a clean build.
10
11Global options:
12
13    RUMPUSER_THREADS
14
15values: pthread/none/fiber or <undefined>
16defval: <undefined>
17effect: Define the way threading is implemented in the rumpuser hypercall
18	implementation.
19	<undefined> - use default implementation (currently "pthread")
20	pthread     - use pthreads to implement threading
21	none        - do not support kernel threads at all
22	fiber       - user a fiber interface, cooperatively scheduled contexts
23