Kconfig 418 B

12345678910111213
  1. menuconfig LWP_USING_TERMINAL
  2. bool "Terminal I/O Subsystem"
  3. depends on RT_USING_SMART
  4. default y
  5. if LWP_USING_TERMINAL
  6. config LWP_PTY_MAX_PARIS_LIMIT
  7. int "Max number of pty devices registered at the same time"
  8. default 64
  9. help
  10. This upper limit is set to protect kernel memory from draining
  11. out by the application if it keeps allocating pty devices.
  12. endif