I'm having a trouble in opening FIFOs in C.. first I created them using mkfifo() function with permission : 0777, and when I tried to open them, it succeeded in opening the first FIFO only, then the process will stuck in opening the second FIFO, and this is my code :

fd1 = open("FIFO1_PATH", O_WRONLY );
fd2 = open("FIFO2_PATH", O_WRONLY );

This will not be executed, but once I comment the second line, it executes ! Is there a limit for the number of opening FIFOs per process ? I don't know why is this happening.. I just spent 3 Hours trying to figure out what the problem is, but without any results :(

Thanks in Advance :)

link|improve this question

1  
LOL .. I GOT the problem :D .. I was supposed to open them with "O_NONBLOCK" option, because it will block in the first open() forever (if we suppose no other process will open for reading) .. Thanks – ObjProg Dec 30 '10 at 10:47
@user Good for you! Please post your solution as an answer. – marcog Dec 30 '10 at 10:49
I just updated it, :) – ObjProg Dec 30 '10 at 10:50
I Got another problem :(, the open will execute but will return -1.. – ObjProg Dec 30 '10 at 10:53
if stuff returns -1, inspect errno (or e.g. call perror() ) to learn why the thing failed – nos Dec 30 '10 at 11:03
show 1 more comment
feedback

2 Answers

up vote 0 down vote accepted

To answer you question about limits - default in Linux is 1024 file descriptors for a process. Your problem is probably not opening the second FIFO for reading so open for writing blocks.

link|improve this answer
Oh, sorry I forgot to mention that I'm trying to open two different FIFOs :) – ObjProg Dec 30 '10 at 11:02
Then, change your code to reflect it. – İsmail 'cartman' Dönmez Dec 30 '10 at 11:07
Ah, are you sure that the second fifo is opened for reading also? Otherwise open for writing will block. – maarons Dec 30 '10 at 11:07
problem solved, thanks – ObjProg Dec 30 '10 at 11:12
feedback

I just got it right :)

I have to let the opening process wait until some other process opens the FIFO for reading (and it will be a blocked reading).. by doing sleep on the writing process I will ensure that the other process will opens for reading ..

Thank you guys, and I'm so sorry for being annoying

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.