Changeset e5a1f82f in mainline for libc/include/thread.h
- Timestamp:
- 2006-03-17T18:09:15Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 81e55099
- Parents:
- 11a4fbf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/include/thread.h
r11a4fbf re5a1f82f 30 30 #define __LIBC__THREAD_H__ 31 31 32 int thread_create(void (* function)(void *arg), void *arg, void *stack, char *name); 33 void thread_exit(int status); 32 #include <kernel/proc/uarg.h> 33 34 extern void __thread_entry(void); 35 extern void thread_main(uspace_arg_t *uarg); 36 37 extern int thread_create(void (* function)(void *arg), void *arg, char *name); 38 extern void thread_exit(int status); 34 39 35 40 #endif
Note:
See TracChangeset
for help on using the changeset viewer.