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

1 23 4

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_kill/
1-1.c 80 pthread_t new_th; local
84 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
92 if (pthread_kill(new_th, SIGTOTEST) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_timedlock/
1-1.c 51 pthread_t new_th; local
61 if (pthread_create(&new_th, NULL, f1, NULL) != 0) {
67 if (pthread_join(new_th, NULL) != 0) {
4-1.c 46 pthread_t new_th; local
49 if (pthread_create(&new_th, NULL, f1, NULL) != 0) {
55 if (pthread_join(new_th, NULL) != 0) {
5-3.c 50 pthread_t new_th; local
59 if (pthread_create(&new_th, NULL, f1, NULL) != 0) {
65 if (pthread_join(new_th, NULL) != 0) {
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) {
5-1.c 54 pthread_t new_th; local
57 if (pthread_create(&new_th, NULL, f1, NULL) != 0) {
63 if (pthread_join(new_th, NULL) != 0) {
5-2.c 54 pthread_t new_th; local
57 if (pthread_create(&new_th, NULL, f1, NULL) != 0) {
63 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setcanceltype/
1-2.c 88 pthread_t new_th; local
101 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
112 if (pthread_cancel(new_th) != 0) {
124 if (pthread_join(new_th, NULL) != 0) {
2-1.c 83 pthread_t new_th; local
96 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
107 if (pthread_cancel(new_th) != 0) {
119 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/
1-1.c 48 pthread_t new_th; local
50 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
55 pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedprio/
1-1.c 74 pthread_t new_th; local
76 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
81 pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setspecific/
1-2.c 59 pthread_t new_th; local
76 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
82 pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_testcancel/
1-1.c 88 pthread_t new_th; local
101 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
112 if (pthread_cancel(new_th) != 0) {
124 if (pthread_join(new_th, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
1-1.c 55 pthread_t new_th; local
57 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
64 if (pthread_kill(new_th, SIGTOTEST) != 0) {
1-2.c 56 pthread_t new_th; local
59 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
73 if (pthread_kill(new_th, SIGTOTEST) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setinheritsched/
2-1.c 58 pthread_t new_th; local
82 rc = pthread_create(&new_th, &attr, thread_func, NULL);
88 rc = pthread_join(new_th, NULL);
2-2.c 64 pthread_t new_th; local
96 rc = pthread_create(&new_th, &attr, thread_func, NULL);
102 rc = pthread_join(new_th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/
1-1.c 43 pthread_t new_th; local
87 rc = pthread_create(&new_th, &attr, thread_func, NULL);
93 rc = pthread_join(new_th, NULL);
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/
1-1.c 40 pthread_t new_th; local
79 rc = pthread_create(&new_th, &attr, thread_func, NULL);
86 rc = pthread_join(new_th, NULL);
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/
2-2.c 76 pthread_t new_th; local
81 rc = pthread_create(&new_th, NULL, a_thread_func, NULL);
92 rc = pthread_cancel(new_th);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cleanup_push/
1-2.c 80 pthread_t new_th; local
88 if (pthread_create(&new_th, NULL, a_thread_func, NULL) != 0) {
98 if (pthread_cancel(new_th) != 0) {
108 if (pthread_join(new_th, &value_ptr) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/
3-1.c 64 pthread_t new_th; local
68 rc = pthread_create(&new_th, NULL, a_thread_func, NULL);
75 rc = pthread_join(new_th, NULL);

Completed in 319 milliseconds

1 23 4