CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2009
    Posts
    12

    windows child process termination indication

    hi,

    I am creating on child process using createProcess() and execute one application.

    When the application terminates, I need to call one function func(int pid); like linux signal(SIGCHLD, &fuct).

    But in windows, i am not find SIGCHLD.

    So, how can I call the new function when my child process terminates.

    Is there any way in windows.

    thank you

  2. #2
    Join Date
    Feb 2005
    Posts
    2,160

    Re: windows child process termination indication

    It's considered bad form to make the same request in two different threads. I was about to answer this when I saw that VictorN already replied here:

    http://www.codeguru.com/forum/showthread.php?t=488061

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