Changeset 38d8849 in mainline for uspace/lib/c/generic/private/thread.h
- Timestamp:
- 2018-07-16T15:58:51Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- db51219f
- Parents:
- c124c985
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-14 16:53:46)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-16 15:58:51)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/thread.h
rc124c985 r38d8849 36 36 #define LIBC_PRIVATE_THREAD_H_ 37 37 38 #include <time.h> 38 39 #include <abi/proc/uarg.h> 40 #include <libarch/thread.h> 41 #include <abi/proc/thread.h> 39 42 40 43 extern void __thread_entry(void); 41 44 extern void __thread_main(uspace_arg_t *); 45 46 extern errno_t thread_create(void (*)(void *), void *, const char *, thread_id_t *); 47 extern void thread_exit(int) __attribute__((noreturn)); 48 extern void thread_detach(thread_id_t); 49 extern thread_id_t thread_get_id(void); 50 extern int thread_usleep(useconds_t); 51 extern unsigned int thread_sleep(unsigned int); 42 52 43 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.