forked from unikraft/lib-pthread-embedded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.uk
31 lines (28 loc) · 739 Bytes
/
Config.uk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
menuconfig LIBPTHREAD_EMBEDDED
bool "libpthread-embedded - An embedded pthread library"
default n
select LIBNOLIBC if !HAVE_LIBC
select LIBUKDEBUG
select LIBUKALLOC
select LIBUKSCHED
select LIBUKSIGNAL
select LIBUKLOCK
select LIBUKLOCK_MUTEX
select LIBUKLOCK_SEMAPHORE
if LIBPTHREAD_EMBEDDED
config LIBPTHREAD_EMBEDDED_MAX_SIMUL_THREADS
int "Maximum number of simultaneous threads"
default 32
help
Maximum number of simultaneous threads.
config LIBPTHREAD_EMBEDDED_MAX_TLS
int "Maximum number of TLS values"
default 32
help
Maximum number of supported TLS values.
config LIBPTHREAD_EMBEDDED_UTEST
bool "Build unit tests"
default n
help
Builds the unit tests for running them from an external application.
endif