binaryninja/personal/scc-docs/pipe.txt

16 lines
354 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
pipe
====
:title: Shellcode Compiler Runtime
---------------------------------------------
int pipe(int fds[2]);
---------------------------------------------
Creates a new pipe. The first file handle is the "read" end, and the second file handle is the "write" end.
See also
--------
link:close.html[close],
link:dup.html[dup],
link:dup2.html[dup2]