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