X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=libthreads.h;h=8033a12dc053fe02a223b158934722331da96e8d;hb=7e44b12a812b12b75ae1613b8ce26be8f0efcde3;hp=1e2df96292bf365d087d7a7d8fe8cf5405f56b87;hpb=8acd20fe4f72d27fae52c13df41f18f00d982bba;p=model-checker.git diff --git a/libthreads.h b/libthreads.h index 1e2df96..8033a12 100644 --- a/libthreads.h +++ b/libthreads.h @@ -1,20 +1,27 @@ +/** @file libthreads.h + * @brief Basic Thread Library Functionality. + */ + #ifndef __LIBTHREADS_H__ #define __LIBTHREADS_H__ -#include - -struct thread { - void (*start_routine); - void *arg; - ucontext_t context; - void *stack; - int index; - int completed; -}; - -int thread_create(struct thread *t, void (*start_routine), void *arg); -void thread_join(struct thread *t); -int thread_yield(void); -struct thread *thread_current(void); +#ifdef __cplusplus +extern "C" { +#endif + + typedef void (*thrd_start_t)(void *); + + typedef int thrd_t; + + int thrd_create(thrd_t *t, thrd_start_t start_routine, void *arg); + int thrd_join(thrd_t); + int thrd_yield(void); + thrd_t thrd_current(void); + + int user_main(int, char**); + +#ifdef __cplusplus +} +#endif #endif /* __LIBTHREADS_H__ */