Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
build-aux/ | 03-Jun-2023 | ||
configure | 16-Oct-2024 | 147.7K | |
configure.ac | 16-Oct-2024 | 3K | |
Makefile | 03-Jun-2023 | 1.4K | |
README.compileopts | 05-Jul-2023 | 798 | |
rumpfiber.c | 27-Dec-2017 | 20.1K | |
rumpfiber.h | 15-Feb-2015 | 2.4K | |
rumpfiber_bio.c | 04-Nov-2014 | 2.2K | |
rumpfiber_sp.c | 15-Feb-2015 | 2.4K | |
rumpuser.c | 24-Sep-2023 | 5.5K | |
rumpuser_bio.c | 04-Nov-2014 | 4.6K | |
rumpuser_component.c | 07-May-2013 | 2.8K | |
rumpuser_component.h | 30-Apr-2013 | 1.8K | |
rumpuser_config.h.in | 16-Oct-2024 | 4.3K | |
rumpuser_daemonize.c | 04-Apr-2024 | 4.1K | |
rumpuser_dl.c | 19-Apr-2022 | 13.6K | |
rumpuser_errtrans.c | 30-Apr-2013 | 6.1K | |
rumpuser_file.c | 16-Oct-2024 | 7.3K | |
rumpuser_int.h | 19-Apr-2022 | 3K | |
rumpuser_mem.c | 24-Aug-2014 | 2.7K | |
rumpuser_port.h | 16-Oct-2024 | 7.1K | |
rumpuser_pth.c | 27-Dec-2017 | 15.7K | |
rumpuser_pth_dummy.c | 18-Aug-2025 | 5.3K | |
rumpuser_random.c | 04-Nov-2014 | 2.5K | |
rumpuser_sigtrans.c | 20-Feb-2014 | 2.2K | |
rumpuser_sp.c | 06-May-2020 | 29.2K | |
shlib_version | 01-Mar-2013 | 120 | |
sp_common.c | 02-Apr-2025 | 16.7K |
1 $NetBSD: README.compileopts,v 1.3 2023/07/05 16:40:33 lukem Exp $ 2 3 This file describes compile-time options (make variables) for 4 the rumpuser POSIX implementation. 5 6 Additionally, NetBSD build options will have an effect; see mk.conf(5) 7 and src/share/mk/bsd.README for a description of NetBSD build options. 8 9 Note: after changing an option, do a clean build. 10 11 Global options: 12 13 RUMPUSER_THREADS 14 15 values: pthread/none/fiber or <undefined> 16 defval: <undefined> 17 effect: 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