CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Anonymous Pipe

  1. #1
    Join Date
    Sep 2008
    Posts
    8

    Question Anonymous Pipe

    Hi,
    I have seen some article(Code Project, MSDN) about anonymous pipe tells that two pipes should be created for communication between parent and child process. Can not we do with single pipe?

    Best Regards,
    RK

  2. #2
    Join Date
    Apr 2005
    Location
    Norway
    Posts
    3,934

    Re: Anonymous Pipe

    They're for one way communication only. So if you need to transfer data in both directions, you'll need two pipies.

    - petter

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