Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4261 → Rev 4262

/trunk/uspace/lib/libc/generic/thread.c
130,6 → 130,8
void thread_exit(int status)
{
__SYSCALL1(SYS_THREAD_EXIT, (sysarg_t) status);
for (;;)
;
}
 
/** Detach thread.
152,6 → 154,7
*/
int thread_join(thread_id_t thread)
{
return 0;
}
 
/** Get current thread ID.