Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

my program has two processes.one process writes to FIFO(named pipe) and must wait until another process read from FIFO and then it waits for that process to return the result(writing to FIFO to be read by this process). my question is that how to know the data is read form FIFO by another process and then call read() system call for result?

share|improve this question

1 Answer

Most UNIXen have bidirectional pipes (man pipe)

Linux, IIRC hasn't got those, so you need to use socket_pair, which can conveniently use UNIX domain sockets giving roughly the same functionality.

In my experience porting code often required little else beyond replacing the call to pipe by a call to socket_pair

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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