BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / master / signal / tgkill.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 thread */
int
tgkill(pid_t tgid, pid_t tid, int sig)
{
	int ret;
	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_TGKILL),
	             "c" (3), "S" (&tgid));
	if (ret >= 0)
		return ret;
	errno = -ret;
	return -1;
}