Rev 1065 | Rev 1113 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1065 | Rev 1079 | ||
---|---|---|---|
Line 27... | Line 27... | ||
27 | */ |
27 | */ |
28 | 28 | ||
29 | #ifndef __LIBC__THREAD_H__ |
29 | #ifndef __LIBC__THREAD_H__ |
30 | #define __LIBC__THREAD_H__ |
30 | #define __LIBC__THREAD_H__ |
31 | 31 | ||
- | 32 | #include <kernel/proc/uarg.h> |
|
- | 33 | ||
- | 34 | extern void __thread_entry(void); |
|
- | 35 | extern void thread_main(uspace_arg_t *uarg); |
|
- | 36 | ||
32 | int thread_create(void (* function)(void *arg), void *arg, void *stack, char *name); |
37 | extern int thread_create(void (* function)(void *arg), void *arg, char *name); |
33 | void thread_exit(int status); |
38 | extern void thread_exit(int status); |
34 | 39 | ||
35 | #endif |
40 | #endif |