BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / commit / ad9b6af63f1fdfcf3556c9b2fc670f72cdc60ab4 / signal / signal.c

// Related

OrionLibC

Barry Updating libc for pipes and signals ad9b6af (2 years, 2 months ago)
diff --git a/signal/signal.c b/signal/signal.c
new file mode 100644
index 0000000..f2495e8
--- /dev/null
+++ b/signal/signal.c
@@ -0,0 +1,16 @@
+#include <sys/syscall.h>
+#include <signal.h>
+#include <errno.h>
+
+/* Send a signal to a process */
+sighandler_t
+signal(int signum, sighandler_t handler)
+{
+	sighandler_t ret;
+	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_SIGNAL),
+	             "c" (2), "S" (&signum));
+	if ((int) ret >= 0)
+		return ret;
+	errno = -((int) ret);
+	return SIG_ERR;
+}