How do I write a program that tells when my other program ends?
|
|
|||
|
|
|
Are you on Windows ? If so, the following should solve the problem - you need to pass the process ID:
Note: This is a blocking function. If you want non-blocking then you'll need to change the INFINITE to a smaller value and call it in a loop (probably keeping the hProc handle open to avoid reopening on a different process of the same PID). Also, I've not had time to test this piece of source code, but I lifted it from an app of mine which does work. |
||
|
|
|
|
If you want to spawn another process, and then do nothing while it runs, then most higher-level languages already have built-ins for doing this. In Perl, for example, there's both If you're on a Unix-flavoured system, then the termination of a process that you've forked will generate a SIGCHLD signal. This means your program can do other things your child process is running. Catching the SIGCHLD signal varies depending upon your language. In Perl, you set a signal handler like so:
There's almost certainly modules on the CPAN that do a better job than the sample code above. You can use Be aware that while you're inside a signal handler, all sorts of weird things can happen. Another signal may come in (hence we use a while loop, to catch all dead processes), and depending upon your language, you may be part-way through another operation! If you're using Perl on Windows, then you can use the Win32::Process module to spawn a process, and call In other languages and environments, your mileage may vary. Please make sure that when your other process dies you check to see how it dies. Having a sub-process die because a user killed it usually requires a different response than it exiting because it successfully finished its task. All the best, Paul |
||
|
|
|
|
Umm you can't, this is an impossible task given the nature of it. Let's say you have a program foo that takes as input another program foo-sub.
The problem with this all be it rather simplistic design is that quite simply if foo-sub is a program that never ends, foo itself never ends. There is no way to tell from the outside if foo-sub or foo is what is causing the program to stop and what determines if your program simply takes a century to run? Essentially this is one of the questions that a computer can't answer. For a more complete overview, Wikipedia has an article on this. |
||
|
|
|
|
The only way to do a waitpid() or waitid() on a program that isn't spawned by yourself is to become its parent by ptrace'ing it. Here is an example of how to use ptrace on a posix operating system to temporarily become another processes parent, and then wait until that program exits. As a side effect you can also get the exit code, and the signal that caused that program to exit.:
|
|||
|
|
|
|
Most operating systems its generally the same kind of thing.... you record the process ID of the program in question and just monitor it by querying the actives processes periodically In windows at least, you can trigger off events to do it... |
||
|
|
|
|
If you want to write a generic program that determine from source code if another program will halt or not, you're out of luck as it is impossible. This is known as the Halting Problem. On the other hand, if you just want your program to launch another program, and wait for its exit, take a look at the If you didn't launch the process, then you can try to poll to see if the program is still alive. This can be done with the All of this only work on POSIX system. |
||
|
|
|
|
On Windows, a technique I've used is to create a global named object (such as a mutex with CreateMutex), and then have the monitoring program open that same named mutex and wait for it (with WaitForSingleObject). As soon as the first program exits, the second program obtains the mutex and knows that the first program exited. On Unix, a usual way to solve this is to have the first program write its pid (getpid()) to a file. A second program can monitor this pid (using kill(pid, 0)) to see whether the first program is gone yet. This method is subject to race conditions and there are undoubtedly better ways to solve it. |
||
|
|
|
|
If you want analyze one program without execution than it's unsolvable problem. |
||
|
|
|
|
This is called the "halting problem" and is not solvable. See http://en.wikipedia.org/wiki/Halting_problem |
||
|
|
