another one
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2000 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,24 @@
|
|||||||
|
#include <syscalls.h>
|
||||||
|
#include <signal.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2002, OpenBeOS Project. All rights reserved.
|
||||||
|
* Distributed under the terms of the OpenBeOS license.
|
||||||
|
*
|
||||||
|
* send_signal.c:
|
||||||
|
* implements the signal function send_signal()
|
||||||
|
* this is merely a wrapper for a syscall
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Author(s):
|
||||||
|
* Daniel Reinhold ([email protected])
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
send_signal(pid_t tid, uint sig)
|
||||||
|
{
|
||||||
|
return sys_send_signal(tid, sig);
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user