Tagged Questions

31
votes
8answers
37k 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 ...
3
votes
3answers
128 views

redirecting standard output in c then resetting standard output

I'm trying to use redirects in C to redirect input to one file and then set standard output back to print to the screen. Could someone tell me what's wrong with this code? #include <stdio.h> ...
2
votes
3answers
224 views

write() and TCP/IP overhead

If I am writing to a socket file descriptor using write() bytes by bytes, Is every byte now a packet? will the socket add TCP/IP header to every byte? Or does it have a buffer mechanism (I ...
2
votes
2answers
295 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 ...
1
vote
2answers
1k views

write function requires unistd.h on Unix, what about windows?

I've changed from a linux computer to a windows and I'm having trouble compiling my code because these two OS don't share the same header files. Since the unistd.h is not obviously included, Visual C ...
1
vote
2answers
186 views

What does #define __REDIRECT_NTH do in unistd.h?

GNU unistd.h has this bit of magic: /* Move FD's file position to OFFSET bytes from the beginning of the file (if WHENCE is SEEK_SET), the current position (if WHENCE is SEEK_CUR), or the ...