Kconfig 858 B

12345678910111213141516171819202122232425262728293031323334
  1. config RT_USING_LWP
  2. bool "Using light-weight process"
  3. select RT_USING_DFS
  4. select RT_USING_LIBC
  5. depends on ARCH_ARM_CORTEX_M || ARCH_ARM_ARM9 || ARCH_ARM_CORTEX_A
  6. default n
  7. help
  8. The lwP is a light weight process running in user mode.
  9. if RT_USING_LWP
  10. config RT_LWP_MAX_NR
  11. int "The max number of light-weight process"
  12. default 30
  13. endif
  14. config RT_USING_GDBSERVER
  15. bool "Using gdbserver"
  16. default y
  17. depends on RT_USING_USERSPACE
  18. config RT_CH_MSG_MAX_NR
  19. int "The maximum number of channel messages"
  20. default 1024
  21. depends on RT_USING_LWP
  22. config RT_LWP_SHM_MAX_NR
  23. int "The maximum number of shared memory"
  24. default 64
  25. depends on RT_USING_LWP
  26. config LWP_CONSOLE_INPUT_BUFFER_SIZE
  27. int "The input buffer size of lwp console device"
  28. default 1024
  29. depends on RT_USING_LWP