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

1 2 34

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/
2-1.c 64 pthread_t new_th; local
111 if ((rc = pthread_create(&new_th, &attr, thread_func, NULL)) != 0) {
116 if ((rc = pthread_join(new_th, NULL)) != 0) {
4-1.c 55 pthread_t new_th; local
104 rc = pthread_create(&new_th, &attr, thread_func, NULL);
110 rc = pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/
2-1.c 64 pthread_t new_th; local
105 rc = pthread_create(&new_th, &attr, thread_func, NULL);
111 rc = pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
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/pthread_create/
8-1.c 46 pthread_t new_th; local
81 ret = pthread_create(&new_th, NULL, a_thread_func, NULL);
87 ret = pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_timedlock/
2-1.c 54 pthread_t new_th; local
64 if (pthread_create(&new_th, NULL, f1, NULL) != 0) {
70 if (pthread_join(new_th, NULL) != 0) {
  /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 257 milliseconds

1 2 34