You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
284 B
C
19 lines
284 B
C
22 years ago
|
#include <unistd.h>
|
||
|
#include "io_internal.h"
|
||
|
|
||
|
int io_pipe(int64* d) {
|
||
|
int fds[2];
|
||
|
if (pipe(fds)==-1)
|
||
|
return 0;
|
||
|
if (io_fd(fds[1])) {
|
||
|
if (io_fd(fds[0])) {
|
||
|
d[0]=fds[0];
|
||
|
d[1]=fds[1];
|
||
|
return 1;
|
||
|
}
|
||
|
io_close(fds[1]);
|
||
|
}
|
||
|
close(fds[0]);
|
||
|
return 0;
|
||
|
}
|