Home | History | Annotate | Download | only in src

Lines Matching refs:thread_t

34 struct thread_t {
43 thread_t *thread;
58 thread_t *thread_new(const char *name) {
62 thread_t *ret = calloc(1, sizeof(thread_t));
98 void thread_free(thread_t *thread) {
109 bool thread_post(thread_t *thread, thread_fn func, void *context) {
130 void thread_stop(thread_t *thread) {
135 const char *thread_name(const thread_t *thread) {
144 thread_t *thread = start->thread;