binaryninja/personal/scc-docs/tgkill.txt

17 lines
420 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
tgkill
======
:title: Shellcode Compiler Runtime
---------------------------------------------
int tgkill(int tgid, int tid, int sig);
---------------------------------------------
Sends the signal `sig` to thread `tid`, which is part of process `tgid`. Returns zero on success, or the negation
of the error code on error.
IMPORTANT: This function is only available on Linux.
See also
--------
link:kill.html[kill]