Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
8answers
35k 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
102 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
219 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
277 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 ...
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
177 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 ...
0
votes
3answers
163 views

Implementation of function execve (unistd.h)

How can I see the implementation of function execve (under x86_64 Linux), it is in the library unistd? I want this because I want to know how can I call an external program using assembler, without ...
0
votes
0answers
85 views

Execve call fails every second time

Every time I start my application, I can make the fork & execve calls and everything will work just fine. After both applications quit, I re-run them. On the second run something weird happens: ...
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
2answers
156 views

Where are the files necessary to modify when adding a system call to linux-2.6.31

when i search for adding a system call, i get many articles but they seem to be for old versions, it also seems like a trivial process. But the problem is, the directories that articles suggest does ...
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 ...