CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    Aug 2008
    Posts
    3

    sender reader using mkfifo example

    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
    Last edited by daleto; August 2nd, 2008 at 05:36 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured