Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
compat
/
nonblock.h
Code
Commits
Pulls
CI/CD
82,128
seen
bisect
jch
maint
master
next
seen
test
todo
h
9 lines
181 Bytes
Copy permalink
Copy
Raw
1
#ifndef COMPAT_NONBLOCK_H
2
#define COMPAT_NONBLOCK_H
3
4
/*
5
* Enable non-blocking I/O for the pipe specified by the passed-in descriptor.
6
*/
7
int
enable_pipe_nonblock
(
int
fd
);
8
9
#endif