The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
36 views

Some man pages not found [closed]

Ubuntu 12.04... I had fedora a couple of years back and I saw the man pages for the following there... unistd.h, sys/types.h, standard typedefs (suffixed by "_t") etc. I tried this... man unistd ...
0
votes
1answer
39 views

pwrite then pread returns -1 [closed]

disclaimer: this question is for a homework assignment that deals with FUSE. I've tried to take any homework specifics out of this question but rather make it a generic C question, because I think ...
-3
votes
1answer
142 views

Read from stdin until EOF

I am having trouble reading from stdin constantly until CTRL+D is pressed. I have to use read() from unistd.h. I am trying to simulate the cat function. Is there a way to make my buffer (which I print ...
0
votes
2answers
78 views

sys/stat.h returning wrong size

I am using unistd.h sys/stat.h and what is interesting is that st_size is bigger than the value returned after read()? st.st_size returns 644 - read() returns 606, Any thoughts?
0
votes
1answer
52 views

Sleep function call leads to which scheduler state?

I have a question with regard to the sleep function declared in unistd.h Assume we use a CFS scheduler. We have a process that is ready to run(lets call this "READY" state),it gets picked to run,and ...
0
votes
3answers
182 views

C sleep function not working

When including the sleep function from unistd.h the program hangs indefinitely: #include <stdio.h> #include <unistd.h> int main() { int i; printf("0 "); for(i = ...
2
votes
1answer
97 views

Piping to unistd.h read segfault

im trying to pipe into read but it keeps segfaulting after the second input. what am i doing wrong? Thanks in advance. $ ./read < <(python -c 'print "BBA\nBBADD\n",') Please enter your first ...
0
votes
2answers
97 views

Compile file from inside the application with execl

I'm trying to compile a file from my application,with this action: - (IBAction)build:(id)sender { pid_t pid=fork(); int status; if(!pid) { execl("/Developer/usr/bin/gcc","-o ...
0
votes
1answer
88 views

Porting klib's knetfile.c|h to windows, when I sub in the “windows unistd.h”, I get error C2036: 'void *' : unknown size

First, by "windows unistd.h", I mean the example located here: "is there a replacement for unistd.h for windows? I am attempting to massage knetfile.c so that it can be compiled for windows64. My ...
1
vote
1answer
548 views

unknown type name 'pid_t' because of using unistd.h

I am getting this error: unknown type name 'pid_t'. I think Build is failing due to commenting of a header file: unistd.h. Since windows does not support unistd.h, i comment #include <unistd> ...
-2
votes
1answer
151 views

Error code in C [closed]

I am having error with my code below #include <stdio.h> #include <stdlib.h> #include <unistd.h> int main() { int i, status; pid_t child; child=fork(); ...
4
votes
2answers
2k views

How to call execl() in C with the proper arguments?

i have vlc (program to reproduce videos) if i type in a shell: /home/vlc "/home/my movies/the movie i want to see.mkv" it opens up an reproduces the movie. however, when I run the following ...
1
vote
1answer
203 views

pread and pwrite not defined?

I am trying to use pread and pwrite so that I can lseek to the beginning of the file and start reading or writing in one atomic operation. Both of these functions will do that for me however, the ...
0
votes
1answer
253 views

Using grep in execl with file descriptor

I'm trying to do the following: execl("/bin/grep","grep","print",fd,NULL); where fd is a file descriptor. So basically this should grep for "print" in the file pointed to by fd. It doesn't seem to ...
1
vote
1answer
85 views

getdomainname() returns bad address under MPI (testing PETSc library)

I am attempting to install PETSc-3.2 on my laptop (MacBook Pro 10.5.8, MPICH2-1.1) and am running into some difficulty when running the tests: it errors out from a system call to getdomainname() which ...
2
votes
2answers
1k views

Fast input/output in competitive programming

I have come across this particular snippet of code many times in solutions of competitive programming contests. I understand the basic use of this code to beat time limits but i want to understand it ...
-1
votes
3answers
130 views

Can't run two times execl

If I try to executes these commands: int main(int argc, char* argv[]) { execl("/bin/echo","echo","list ","of", "files:\n",NULL); execl("/bin/ls","ls","-al",NULL); return 0; } Only the ...
1
vote
2answers
423 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
315 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
521 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 ...
4
votes
3answers
1k 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> ...
1
vote
2answers
2k 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 ...
0
votes
2answers
324 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 ...
2
votes
3answers
550 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 ...
1
vote
2answers
299 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 ...
2
votes
2answers
505 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 ...
0
votes
2answers
221 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 ...
2
votes
2answers
363 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: ...
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 ...
45
votes
8answers
65k 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 ...