Kconfig 377 B

1234567891011121314151617
  1. menu "Interprocess Communication (IPC)"
  2. config RT_USING_POSIX_PIPE
  3. bool "Enable pipe and FIFO"
  4. select RT_USING_POSIX_FS
  5. select RT_USING_POSIX_DEVIO
  6. select RT_USING_POSIX_POLL
  7. default n
  8. config RT_USING_POSIX_PIPE_SIZE
  9. int "Set pipe buffer size"
  10. depends on RT_USING_POSIX_PIPE
  11. default 512
  12. comment "Socket is in the 'Network' category"
  13. endmenu