From 18963701a1d07119f179ccad22da90fd9295435e Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Fri, 9 Mar 2012 15:18:57 -0800 Subject: [PATCH] libthreads: export thread_join() in header --- libthreads.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libthreads.h b/libthreads.h index f8a86cdf..3324fccf 100644 --- a/libthreads.h +++ b/libthreads.h @@ -22,5 +22,6 @@ struct thread { }; int thread_create(struct thread *t, void (*start_routine), void *arg); +void thread_join(struct thread *t); #endif /* __LIBTHREADS_H__ */ -- 2.34.1