From 6aad41838206dd84ff984962f144c03354b0da24 Mon Sep 17 00:00:00 2001 From: Philippe Houdoin Date: Tue, 20 May 2003 22:44:37 +0000 Subject: [PATCH] Add send_signal_etc() to kernel functions userland support. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3268 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/kits/net/new_stack/userland_modules.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/tests/kits/net/new_stack/userland_modules.cpp b/src/tests/kits/net/new_stack/userland_modules.cpp index 601ac6ac9c..2f30733b51 100644 --- a/src/tests/kits/net/new_stack/userland_modules.cpp +++ b/src/tests/kits/net/new_stack/userland_modules.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -400,6 +401,14 @@ _EXPORT thread_id spawn_kernel_thread(thread_entry func, const char *name, long return spawn_thread(func, name, priority, arg); } + + +_EXPORT int send_signal_etc(pid_t thid, uint sig, uint32 flags) +{ + return send_signal(thid, sig); +} + + } // extern "C"