diff --git a/src/kernel/libroot/posix/signal/send_signal.c b/src/kernel/libroot/posix/signal/send_signal.c new file mode 100644 index 0000000000..fb63a4a7eb --- /dev/null +++ b/src/kernel/libroot/posix/signal/send_signal.c @@ -0,0 +1,24 @@ +#include +#include + +/* + * 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 (danielre@users.sf.net) + * + */ + + +int +send_signal(pid_t tid, uint sig) +{ + return sys_send_signal(tid, sig); +} +