mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
16 lines
248 B
C
16 lines
248 B
C
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include "open.h"
|
|
#include "blocking.h"
|
|
|
|
int open_pipe(int *fd)
|
|
{
|
|
int i;
|
|
if (pipe(fd) == -1) return -1;
|
|
for (i = 0;i < 2;++i) {
|
|
fcntl(fd[i],F_SETFD,1);
|
|
blocking_disable(fd[i]);
|
|
}
|
|
return 0;
|
|
}
|