Changes in uspace/lib/c/generic/private/thread.h [3fcea34:4805495] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/thread.h
r3fcea34 r4805495 37 37 38 38 #include <time.h> 39 #include <abi/proc/uarg.h> 39 40 #include <libarch/thread.h> 40 41 #include <abi/proc/thread.h> 41 42 42 43 extern void __thread_entry(void); 44 extern void __thread_main(uspace_arg_t *); 43 45 44 extern errno_t thread_create(errno_t (*)(void *), void *, const char *); 46 extern errno_t thread_create(void (*)(void *), void *, const char *, 47 thread_id_t *); 45 48 extern void thread_exit(int) __attribute__((noreturn)); 49 extern void thread_detach(thread_id_t); 46 50 extern thread_id_t thread_get_id(void); 47 51 extern void thread_usleep(usec_t);
Note:
See TracChangeset
for help on using the changeset viewer.