Tagged Questions

29
votes
8answers
36k views

Is there a replacement for unistd.h for Windows (Visual C)?

I'm porting a relatively simple console program written for Unix to the Windows platform (Visual C++ 8.0). All the source files include "unistd.h", which doesn't exist. Removing it, I get complaints ...
2
votes
2answers
279 views

atomic append on a file descriptor, but at what offset?

in unistd.h using open() with the O_APPEND flag gives atomic writes always to the end of the file... this is great and all, but what if i need to know the offset at which it atomically appended to ...
2
votes
2answers
254 views

Standard POSIX read shadowed by a read method with different signature

I have a C++ File class with read function, that is supposed to read whole contents of a file (just like Python does) into a buffer. However, when I tried to call read function from unistd.h, I get: ...
1
vote
2answers
68 views

About the read() in unistd.h (C++)

all, I am designing a Key-Value server, and when I wrote the client, and I found a really strange thing,see the simplified code: while(1) { printf("->:"); read(STDIN_FILENO, buf, ...
1
vote
2answers
64 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
2answers
209 views

Missing characters using read() from unistd.h

We're using the read() method from unistd.h to receive data from the serial port in a Linux environment. To read data from /dev/ttys1 specifically. Part of the data we're receiving include the ...
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 ...