From: Brian Norris Date: Fri, 9 Mar 2012 23:18:57 +0000 (-0800) Subject: libthreads: export thread_join() in header X-Git-Tag: pldi2013~615 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=18963701a1d07119f179ccad22da90fd9295435e;p=model-checker.git libthreads: export thread_join() in header --- diff --git a/libthreads.h b/libthreads.h index f8a86cd..3324fcc 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__ */