replaced sys_kill with general thread-aimed sys_send_signal; cleaned up
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1740 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -152,7 +152,6 @@ SYSCALL2(sys_getenv, 80)
|
||||
|
||||
/* Signal handling calls */
|
||||
SYSCALL0(sys_return_from_signal, 103)
|
||||
SYSCALL2(sys_kill, 104)
|
||||
SYSCALL3(sys_sigaction, 105)
|
||||
SYSCALL2(sys_send_signal, 110)
|
||||
SYSCALL3(sys_set_alarm, 111)
|
||||
|
||||
@@ -83,14 +83,14 @@ set_thread_priority(thread_id thread, int32 priority)
|
||||
void
|
||||
exit_thread(status_t status)
|
||||
{
|
||||
// ToDo: exit_thread not implemented
|
||||
sys_exit(status);
|
||||
}
|
||||
|
||||
|
||||
status_t
|
||||
wait_for_thread(thread_id thread, status_t *thread_return_value)
|
||||
{
|
||||
return sys_wait_on_thread(thread,thread_return_value);
|
||||
return sys_wait_on_thread(thread, thread_return_value);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user