I want to read the exit value from my console application to exit all the related threads with that application before exit.

|
I want to read the exit value from my console application to exit all the related threads with that application before exit.
|
|||||||||
|
|
|||||||||
|
|
Take a look at C++ Console Breaking. The standard library you need to use is csignal What you can do is register for signals which force your app to close (SIGTERM) and perform logic there, like exiting your multiple threads. This post suggests that this should work with windows as well. You could also register a function with atexit which seems to catch normal exit from main() etc, not sure if closing the terminal will count as "normal exit". |
|||||||
|
|
Edit: Ok so it seems you want to be notified as soon as the process exits. Sorry, I misread your question due to the term "exit value". Well if you start the process via If you in fact want the exit code of a process ( Programmatically, you can use http://msdn.microsoft.com/en-us/library/windows/desktop/ms683189(v=vs.85).aspx In the shell, use the |
||||
|
|