Home
last modified time | relevance | path

Searched refs:status (Results 1 – 5 of 5) sorted by relevance

/htl/
A Dpt-join.c28 __pthread_join_common (pthread_t thread, void **status, int try, in __pthread_join_common() argument
70 if (status != NULL) in __pthread_join_common()
71 *status = pthread->status; in __pthread_join_common()
95 __pthread_join (pthread_t thread, void **status) in __pthread_join() argument
97 return __pthread_join_common (thread, status, 0, CLOCK_REALTIME, NULL); in __pthread_join()
102 __pthread_tryjoin_np (pthread_t thread, void **status) in __pthread_tryjoin_np() argument
104 return __pthread_join_common (thread, status, 1, CLOCK_REALTIME, NULL); in __pthread_tryjoin_np()
109 __pthread_timedjoin_np (pthread_t thread, void **status, in __pthread_timedjoin_np() argument
112 return __pthread_join_common (thread, status, 0, CLOCK_REALTIME, abstime); in __pthread_timedjoin_np()
117 __pthread_clockjoin_np (pthread_t thread, void **status, in __pthread_clockjoin_np() argument
[all …]
A Dpt-exit.c33 __pthread_exit (void *status) in __pthread_exit() argument
64 status = PTHREAD_CANCELED; in __pthread_exit()
85 self->status = status; in __pthread_exit()
A Dpt-internal.h92 void *status; member
/htl/tests/
A Dtest-5.c81 int status; in main() local
83 pid = waitpid (child, &status, 0); in main()
84 printf ("pid = %d; child = %d; status = %d\n", pid, child, status); in main()
86 assert (status != 0); in main()
A Dtest-4.c92 int status; in main() local
94 pid = waitpid (child, &status, 0); in main()
95 printf ("pid = %d; child = %d; status = %d\n", pid, child, status); in main()
97 assert (status != 0); in main()

Completed in 9 milliseconds