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

12 3 4

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getschedparam/
1-1.c 45 pthread_t new_th; local
48 rc = pthread_create(&new_th, NULL, thread_func, NULL);
54 pthread_join(new_th, NULL);
1-2.c 67 pthread_t new_th; local
70 rc = pthread_create(&new_th, NULL, thread_func, NULL);
76 pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/
3-1.c 77 pthread_t new_th; local
81 err = pthread_create(&new_th, NULL, a_thread_func, NULL);
90 err = pthread_cancel(new_th);
96 err = pthread_join(new_th, NULL);
2-1.c 47 pthread_t new_th; local
53 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
63 if (pthread_join(new_th, &value_ptr) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/
3-1.c 56 pthread_t new_th; local
68 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
74 if (pthread_join(new_th, NULL) != 0) {
1-2.c 47 pthread_t new_th; local
62 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
68 if (pthread_join(new_th, &value_ptr) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_delete/
2-1.c 58 pthread_t new_th; local
70 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
76 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
3-1.c 71 pthread_t new_th; local
75 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
85 if (pthread_cancel(new_th) != 0) {
91 pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setcancelstate/
1-1.c 68 pthread_t new_th; local
75 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
85 if (pthread_cancel(new_th) != 0) {
95 if (pthread_join(new_th, NULL) != 0) {
1-2.c 67 pthread_t new_th; local
74 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
84 if (pthread_cancel(new_th) != 0) {
94 if (pthread_join(new_th, NULL) != 0) {
2-1.c 63 pthread_t new_th; local
70 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
80 if (pthread_cancel(new_th) != 0) {
90 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_testcancel/
2-1.c 63 pthread_t new_th; local
70 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
80 if (pthread_cancel(new_th) != 0) {
90 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_init/
2-1.c 55 pthread_t new_th; local
67 if (pthread_create(&new_th, &new_attr, a_thread_func, NULL) != 0) {
77 ret_val = pthread_detach(new_th);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setscope/
1-1.c 38 pthread_t new_th; local
56 rc = pthread_create(&new_th, &attr, thread_func, NULL);
74 rc = pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
1-1.c 77 pthread_t new_th; local
84 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
94 if (pthread_cancel(new_th) != 0) {
1-2.c 74 pthread_t new_th; local
81 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
91 if (pthread_cancel(new_th) != 0) {
1-3.c 89 pthread_t new_th; local
102 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
113 if (pthread_cancel(new_th) != 0) {
125 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cleanup_pop/
1-1.c 63 pthread_t new_th; local
70 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
89 if (pthread_join(new_th, NULL) != 0) {
1-2.c 63 pthread_t new_th; local
70 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
89 if (pthread_join(new_th, NULL) != 0) {
1-3.c 71 pthread_t new_th; local
79 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
85 if (pthread_join(new_th, NULL) != 0) {
  /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_exit/
1-1.c 43 pthread_t new_th; local
51 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
61 if (pthread_join(new_th, (void *)&value_ptr) != 0) {
2-1.c 77 pthread_t new_th; local
87 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
93 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/
1-1.c 49 pthread_t new_th; local
51 rc = pthread_create(&new_th, NULL, thread_func, NULL);
57 rc = pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/speculative/
3-1.c 41 pthread_t new_th; local
43 rc = pthread_create(&new_th, NULL, thread_func, NULL);
49 rc = pthread_join(new_th, NULL);
55 rc = pthread_getcpuclockid(new_th, &cid);

Completed in 570 milliseconds

12 3 4