Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # Copyright (c) 2018 Intel Corporation
  2. # SPDX-License-Identifier: Apache-2.0
  3. config POSIX_MAX_FDS
  4. int "Maximum number of open file descriptors"
  5. default 16 if POSIX_API
  6. default 4
  7. help
  8. Maximum number of open file descriptors, this includes
  9. files, sockets, special devices, etc.
  10. config POSIX_API
  11. depends on !ARCH_POSIX
  12. bool "POSIX APIs"
  13. help
  14. Enable mostly-standards-compliant implementations of
  15. various POSIX (IEEE 1003.1) APIs.
  16. config PTHREAD_IPC
  17. bool "POSIX pthread IPC API"
  18. default y if POSIX_API
  19. help
  20. This enables a mostly-standards-compliant implementation of
  21. the pthread mutex, condition variable and barrier IPC
  22. mechanisms.
  23. if PTHREAD_IPC
  24. config MAX_PTHREAD_COUNT
  25. int "Maximum simultaneously active pthread count in POSIX application"
  26. default 5
  27. range 0 255
  28. help
  29. Maximum number of simultaneously active threads in a POSIX application.
  30. config SEM_VALUE_MAX
  31. int "Maximum semaphore limit"
  32. default 32767
  33. range 1 32767
  34. help
  35. Maximum semaphore count in POSIX compliant Application.
  36. endif # PTHREAD_IPC
  37. config POSIX_CLOCK
  38. bool "POSIX clock, timer, and sleep APIs"
  39. default y if POSIX_API
  40. help
  41. This enables POSIX clock\_\*(), timer\_\*(), and \*sleep()
  42. functions.
  43. config MAX_TIMER_COUNT
  44. int "Maximum timer count in POSIX application"
  45. default 5
  46. range 0 255
  47. help
  48. Mention maximum number of timers in POSIX compliant application.
  49. config POSIX_MQUEUE
  50. bool "Enable POSIX message queue"
  51. default y if POSIX_API
  52. help
  53. This enabled POSIX message queue related APIs.
  54. if POSIX_MQUEUE
  55. config MSG_COUNT_MAX
  56. int "Maximum number of messages in message queue"
  57. default 16
  58. help
  59. Mention maximum number of messages in message queue in POSIX compliant
  60. application.
  61. config MSG_SIZE_MAX
  62. int "Maximum size of a message"
  63. default 16
  64. help
  65. Mention maximum size of message in bytes.
  66. config MQUEUE_NAMELEN_MAX
  67. int "Maximum size of a name length"
  68. default 16
  69. range 2 255
  70. help
  71. Mention length of message queue name in number of characters.
  72. endif
  73. config POSIX_FS
  74. bool "Enable POSIX file system API support"
  75. default y if POSIX_API
  76. depends on FILE_SYSTEM
  77. help
  78. This enables POSIX style file system related APIs.
  79. config POSIX_MAX_OPEN_FILES
  80. int "Maximum number of open file descriptors"
  81. default 16
  82. depends on POSIX_FS
  83. help
  84. Maximum number of open files. Note that this setting
  85. is additionally bounded by CONFIG_POSIX_MAX_FDS.
  86. # The name of this option is mandated by zephyr_interface_library_named
  87. # cmake directive.
  88. config APP_LINK_WITH_POSIX_SUBSYS
  89. bool "Make POSIX headers available to application"
  90. default y
  91. depends on POSIX_API
  92. help
  93. Add POSIX subsystem header files to the 'app' include path.
  94. config EVENTFD
  95. bool "Enable support for eventfd"
  96. depends on !ARCH_POSIX
  97. help
  98. Enable support for event file descriptors, eventfd. An eventfd can
  99. be used as an event wait/notify mechanism together with POSIX calls
  100. like read, write and poll.
  101. config EVENTFD_MAX
  102. int "Maximum number of eventfd's"
  103. depends on EVENTFD
  104. default 1
  105. range 1 4096
  106. help
  107. The maximum number of supported event file descriptors.