X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=libthreads.h;h=0c02971342d06ffa903feb01b2d4daadc08754d4;hp=a899881c3ee5185c94d3ad115ed90329e777699e;hb=4955df9bfa3d2e961024d419069735fd6f25ac67;hpb=cca49f0c63efac9a730d9f26b9b90fabdd881337 diff --git a/libthreads.h b/libthreads.h index a899881c..0c029713 100644 --- a/libthreads.h +++ b/libthreads.h @@ -1,3 +1,7 @@ +/** @file libthreads.h + * @brief Basic Thread Library Functionality. + */ + #ifndef __LIBTHREADS_H__ #define __LIBTHREADS_H__ @@ -5,7 +9,7 @@ extern "C" { #endif - typedef void (*thrd_start_t)(); + typedef void (*thrd_start_t)(void *); typedef int thrd_t;