summaryrefslogtreecommitdiff
path: root/linen.h
diff options
context:
space:
mode:
Diffstat (limited to 'linen.h')
-rw-r--r--linen.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/linen.h b/linen.h
new file mode 100644
index 0000000..ef625d0
--- /dev/null
+++ b/linen.h
@@ -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_ */