Click to See Complete Forum and Search --> : sender reader using mkfifo example


daleto
August 2nd, 2008, 12:56 PM
Hi,
I have done a program to dump a database to a "FIFO" File in the sender part of the thread.
And a reader thread to read data from the "FIFO" to send to the backup application.

The problem is that I got, "Broken PIPE" from the sender.
And "read: Bad address" from the reader part.

I have solved this now by using POPEN instead for this application, but I have other applications that requires to write to a NAMED pipe instead.
Please help me