2017-10-17 22:27:06 +08:00
|
|
|
menu "POSIX layer and C standard library"
|
2017-01-31 11:54:12 +08:00
|
|
|
|
|
|
|
config RT_USING_LIBC
|
2017-10-13 12:44:54 +08:00
|
|
|
bool "Enable libc APIs from toolchain"
|
|
|
|
default y
|
2017-01-31 11:54:12 +08:00
|
|
|
|
|
|
|
config RT_USING_PTHREADS
|
2017-10-13 12:44:54 +08:00
|
|
|
bool "Enable pthreads APIs"
|
|
|
|
default n
|
|
|
|
|
2019-05-12 21:48:54 +08:00
|
|
|
if RT_USING_PTHREADS
|
|
|
|
config PTHREAD_NUM_MAX
|
|
|
|
int "Maximum number of pthreads"
|
|
|
|
default 8
|
|
|
|
endif
|
|
|
|
|
2017-12-23 23:55:05 +08:00
|
|
|
if RT_USING_LIBC && RT_USING_DFS
|
2017-10-17 22:27:06 +08:00
|
|
|
config RT_USING_POSIX
|
|
|
|
bool "Enable POSIX layer for poll/select, stdin etc"
|
2017-10-13 12:44:54 +08:00
|
|
|
select RT_USING_DFS_DEVFS
|
|
|
|
default y
|
|
|
|
|
2017-10-17 22:27:06 +08:00
|
|
|
if RT_USING_POSIX
|
2017-10-13 12:44:54 +08:00
|
|
|
config RT_USING_POSIX_MMAP
|
|
|
|
bool "Enable mmap() api"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config RT_USING_POSIX_TERMIOS
|
|
|
|
bool "Enable termios feature"
|
|
|
|
default n
|
2018-07-18 11:05:39 +08:00
|
|
|
|
2017-12-31 14:49:18 +08:00
|
|
|
config RT_USING_POSIX_AIO
|
|
|
|
bool "Enable AIO"
|
|
|
|
default n
|
2017-10-17 22:27:06 +08:00
|
|
|
endif
|
2018-04-25 23:26:20 +08:00
|
|
|
|
2018-08-30 20:27:45 +08:00
|
|
|
config RT_USING_MODULE
|
|
|
|
bool "Enable dynamic module with dlopen/dlsym/dlclose feature"
|
2018-04-25 23:26:20 +08:00
|
|
|
default n
|
2017-10-13 12:44:54 +08:00
|
|
|
endif
|
2017-01-31 11:54:12 +08:00
|
|
|
|
|
|
|
endmenu
|