Changeset 46577995 in mainline for uspace/lib/c/include/thread.h
- Timestamp:
- 2018-01-04T20:50:52Z (7 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/thread.h
rfacacc71 r46577995 42 42 #include <time.h> 43 43 44 extern int thread_create(void (*)(void *), void *, const char *, thread_id_t *);44 extern errno_t thread_create(void (*)(void *), void *, const char *, thread_id_t *); 45 45 extern void thread_exit(int) __attribute__((noreturn)); 46 46 extern void thread_detach(thread_id_t); 47 extern int thread_join(thread_id_t);47 extern errno_t thread_join(thread_id_t); 48 48 extern thread_id_t thread_get_id(void); 49 49 extern int thread_usleep(useconds_t);
Note:
See TracChangeset
for help on using the changeset viewer.