Lines Matching refs:ret
79 int i, ret; in dso_process() local
84 ret = pthread_create (&thread[i], NULL, dso_invoke, (void *) fun_vec); in dso_process()
85 if (ret != 0) in dso_process()
87 printf ("pthread_create failed: %d\n", ret); in dso_process()
96 ret = pthread_join (thread[i], NULL); in dso_process()
97 if (ret != 0) in dso_process()
99 printf ("pthread_join failed: %d\n", ret); in dso_process()
121 int ret; in do_test() local
131 ret = pthread_create (&thread[i], NULL, dso_process, in do_test()
133 if (ret != 0) in do_test()
135 printf ("pthread_create failed: %d\n", ret); in do_test()
145 ret = pthread_join (thread[i], NULL); in do_test()
146 if (ret != 0) in do_test()
148 printf ("pthread_join failed: %d\n", ret); in do_test()