mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-02 11:30:25 +08:00
18 lines
377 B
Plaintext
18 lines
377 B
Plaintext
menu "Interprocess Communication (IPC)"
|
|
|
|
config RT_USING_POSIX_PIPE
|
|
bool "Enable pipe and FIFO"
|
|
select RT_USING_POSIX_FS
|
|
select RT_USING_POSIX_DEVIO
|
|
select RT_USING_POSIX_POLL
|
|
default n
|
|
|
|
config RT_USING_POSIX_PIPE_SIZE
|
|
int "Set pipe buffer size"
|
|
depends on RT_USING_POSIX_PIPE
|
|
default 512
|
|
|
|
comment "Socket is in the 'Network' category"
|
|
|
|
endmenu
|