binaryninja/personal/scc-docs/kill.txt

16 lines
370 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
kill
====
:title: Shellcode Compiler Runtime
---------------------------------------------
int kill(pid_t pid, int sig);
---------------------------------------------
Sends the signal `sig` to process `pid`. Returns zero on success, or the negation of the error code on error.
See also
--------
link:fork.html[fork],
link:wait.html[wait],
link:waitpid.html[waitpid]