Index: fusl/src/thread/pthread_kill.c |
diff --git a/fusl/src/thread/pthread_kill.c b/fusl/src/thread/pthread_kill.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..acdb1ea6173c27284ed946a63831855908f28f19 |
--- /dev/null |
+++ b/fusl/src/thread/pthread_kill.c |
@@ -0,0 +1,10 @@ |
+#include "pthread_impl.h" |
+ |
+int pthread_kill(pthread_t t, int sig) |
+{ |
+ int r; |
+ __lock(t->killlock); |
+ r = t->dead ? ESRCH : -__syscall(SYS_tkill, t->tid, sig); |
+ __unlock(t->killlock); |
+ return r; |
+} |