blob: 41bc455d87dc6b557ac383311e1b316baf5fa6fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <errno.h>
#include <signal.h>
#include <bits/ensure.h>
#include <mlibc/debug.hpp>
#include <mlibc/glibc-sysdeps.hpp>
int tgkill(int tgid, int tid, int sig) {
MLIBC_CHECK_OR_ENOSYS(mlibc::sys_tgkill, -1);
if(int e = mlibc::sys_tgkill(tgid, tid, sig); e) {
errno = e;
return -1;
}
return 0;
}
|