renamed and cleaned up export header files to match linux convention
[lunaix-os.git] / lunaix-os / includes / usr / lunaix / threads.h
index a5d322ea65876f605d5026a99f08545e6af9b306..c70e40711df21058cfff43c8a49efe117b07cef5 100644 (file)
@@ -1,11 +1,12 @@
-#ifndef __LUNAIX_USR_THREADS_H
-#define __LUNAIX_USR_THREADS_H
+#ifndef _LUNAIX_UHDR_USR_THREADS_H
+#define _LUNAIX_UHDR_USR_THREADS_H
 
 #include "types.h"
 
-struct uthread_info {
-    void* th_stack_top;
-    size_t th_stack_sz;
+struct uthread_param 
+{
+    void* th_handler;
+    void* arg1;
 };
 
-#endif /* __LUNAIX_USR_THREADS_H */
+#endif /* _LUNAIX_UHDR_USR_THREADS_H */