X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=libthreads.h;h=0c02971342d06ffa903feb01b2d4daadc08754d4;hp=ff6d5aa975770cd1d5780e3c24ecc1a2db1ab51d;hb=fbcb205af54b85aed7d2d9a6ed1eaa91e7d70a23;hpb=8122c7760b4dba8c3b4f0f538eb6fa48d7026092 diff --git a/libthreads.h b/libthreads.h index ff6d5aa9..0c029713 100644 --- a/libthreads.h +++ b/libthreads.h @@ -1,27 +1,27 @@ +/** @file libthreads.h + * @brief Basic Thread Library Functionality. + */ + #ifndef __LIBTHREADS_H__ #define __LIBTHREADS_H__ -#include -#include - -#ifdef CONFIG_DEBUG -#define DBG() do { printf("Here: %s, L%d\n", __func__, __LINE__); } while (0) -#define DEBUG(fmt, ...) printf(fmt, ##__VA_ARGS__) -#else -#define DBG() -#define DEBUG(fmt, ...) +#ifdef __cplusplus +extern "C" { #endif -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_start(struct thread *t); + 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__ */