BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 03048a95d88cc7a78171393371f5c22a0250a014 / signal / kill.c

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)
#include <sys/syscall.h>
#include <sys/types.h>
#include <errno.h>

/* Send a signal to a process */
int
kill(pid_t pid, int sig)
{
	int ret;
	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_KILL),
	             "c" (2), "S" (&pid));
	if (ret >= 0)
		return ret;
	errno = -ret;
	return -1;
}