Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. menuconfig RTT_POSIX_TESTCASE_PTHREAD_H
  2. bool "<pthread.h>"
  3. default n
  4. if RTT_POSIX_TESTCASE_PTHREAD_H
  5. config PTHREAD_H_PTHREAD_CREATE
  6. bool "<pthread.h> -> pthread_create"
  7. default n
  8. config PTHREAD_H_PTHREAD_JOIN
  9. bool "<pthread.h> -> pthread_join"
  10. default n
  11. config PTHREAD_H_PTHREAD_EXIT
  12. bool "<pthread.h> -> pthread_exit"
  13. default n
  14. config PTHREAD_H_PTHREAD_COND_INIT
  15. bool "<pthread.h> -> pthread_cond_init"
  16. default n
  17. config PTHREAD_H_PTHREAD_COND_DESTROY
  18. bool "<pthread.h> -> pthread_cond_destroy"
  19. default n
  20. config PTHREAD_H_PTHREAD_COND_BROADCAST
  21. bool "<pthread.h> -> pthread_cond_broadcast"
  22. default n
  23. config PTHREAD_H_PTHREAD_COND_SIGNAL
  24. bool "<pthread.h> -> pthread_cond_signal"
  25. default n
  26. config PTHREAD_H_PTHREAD_COND_TIMEWAIT
  27. bool "<pthread.h> -> pthread_cond_timedwait"
  28. default n
  29. config PTHREAD_H_PTHREAD_DETACH
  30. bool "<pthread.h> -> pthread_detach"
  31. default n
  32. endif