diff options
Diffstat (limited to 'linen.h')
-rw-r--r-- | linen.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#ifndef _LINEN_H_ +#define _LINEN_H_ + +#if (__x86_64 != 1 || __linux__ != 1 || __LP64__ != 1) + #error "Linen (libinen.so) only works on x86_64 Linux!" +#endif + +typedef int* linen_thread_t; + +extern int linen_thread_create(linen_thread_t* handle, void* (*func)(void*), void* arg); +extern int linen_thread_finish(linen_thread_t handle, void** retval); + +#endif /* _LINEN_H_ */ |