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