Tagged Questions
1
vote
2answers
71 views
homework dup2 function
I have a question on a homework assignment with the following code:
dup2(fd,0);
dup2(fd,1);
dup2(fd,2);
if(fd>2)
close(fd);
It says, "To see why the if test is needed, assume fd is 1 and ...
0
votes
3answers
1k views
unistd.h read() is reading more data then being written
I'm reading/writing data off of a named pipe. On the writing side it says that it's writing a constant 110 bytes. On the Reading side for the majority of time it says that it's reading 110 bytes which ...