HomeSort by relevance Sort by last modified time
    Searched defs:new_th (Results 76 - 81 of 81) sorted by null

1 2 34

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setcanceltype/
1-1.c 79 pthread_t new_th; local
93 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
104 if (pthread_cancel(new_th) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
2-1.c 89 pthread_t new_th; local
91 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
98 if (pthread_kill(new_th, SIGTOTEST) != 0) {
3-1.c 75 pthread_t new_th; local
77 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
84 if (pthread_kill(new_th, SIGTOTEST) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
2-3.c 97 pthread_t new_th; local
103 rc = pthread_create(&new_th, NULL, a_thread_func, NULL);
114 rc = pthread_cancel(new_th);
3-1.c 94 pthread_t new_th; local
113 rc = pthread_create(&new_th, NULL, a_thread_func, NULL);
123 rc = pthread_cancel(new_th);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_timedsend/
12-1.c 135 pthread_t new_th; local
142 ret = pthread_create(&new_th, NULL, a_thread_func, NULL);
153 ret = pthread_kill(new_th, SIGUSR1);
165 ret = pthread_join(new_th, NULL);

Completed in 220 milliseconds

1 2 34