Changeset a2c58f6 in mainline
- Timestamp:
- 2009-04-09T19:08:33Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 92fd52d7
- Parents:
- 552823e
- Location:
- uspace/lib/libc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/thread.c
r552823e ra2c58f6 131 131 { 132 132 __SYSCALL1(SYS_THREAD_EXIT, (sysarg_t) status); 133 for (;;) 134 ; 133 135 } 134 136 … … 153 155 int thread_join(thread_id_t thread) 154 156 { 157 return 0; 155 158 } 156 159 -
uspace/lib/libc/include/thread.h
r552823e ra2c58f6 46 46 47 47 extern int thread_create(void (*)(void *), void *, char *, thread_id_t *); 48 extern void thread_exit(int) ;48 extern void thread_exit(int) __attribute__ ((noreturn)); 49 49 extern void thread_detach(thread_id_t); 50 50 extern int thread_join(thread_id_t);
Note:
See TracChangeset
for help on using the changeset viewer.