X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=libthreads.h;h=0c02971342d06ffa903feb01b2d4daadc08754d4;hb=c7f10b7c489c0c186bfe34dd1d87ae8b89d501ff;hp=bf7acae804bc58a99d85cf883f9cf3d14e8b1bac;hpb=9d5424201af87d2824eb9411f1afa42e82e2f602;p=c11tester.git diff --git a/libthreads.h b/libthreads.h index bf7acae8..0c029713 100644 --- a/libthreads.h +++ b/libthreads.h @@ -1,29 +1,27 @@ +/** @file libthreads.h + * @brief Basic Thread Library Functionality. + */ + #ifndef __LIBTHREADS_H__ #define __LIBTHREADS_H__ -#include - -typedef enum thread_state { - THREAD_CREATED, - THREAD_RUNNING, - THREAD_READY, - THREAD_COMPLETED -} thread_state; - -struct thread { - void (*start_routine); - void *arg; - ucontext_t context; - void *stack; - int index; - thread_state state; -}; - -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); - -extern void user_main(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); + + void user_main(void); + +#ifdef __cplusplus +} +#endif #endif /* __LIBTHREADS_H__ */