Can somebody please tell me how to fire-and-forget a process in Perl? I've already looked at ruby: how to fire and forget a subprocess? for doing the same in Ruby.
|
feedback
|
|
From perlfaq8's answer to How do I start a process in the background? Several modules can start other processes that do not block your Perl program. You can use IPC::Open3, Parallel::Jobs, IPC::Run, and some of the POE modules. See CPAN for more details. You could also use
or you could use fork as documented in "fork" in perlfunc, with further examples in perlipc. Some things to be aware of, if you're on a Unix- like system: STDIN, STDOUT, and STDERR are shared Both the main process and the backgrounded one (the "child" process) share the same STDIN, STDOUT and STDERR filehandles. If both try to access them at once, strange things can happen. You may want to close or reopen these for the child. You can get around this with "open"ing a pipe (see "open" in perlfunc) but on some systems this means that the child process cannot outlive the parent. Signals You'll have to catch the SIGCHLD signal, and possibly SIGPIPE too. SIGCHLD is sent when the backgrounded process finishes. SIGPIPE is sent when you write to a filehandle whose child process has closed (an untrapped SIGPIPE can cause your program to silently die). This is not an issue with "system("cmd&")". Zombies You have to be prepared to "reap" the child process when it finishes.
You can also use a double fork. You immediately wait() for your first child, and the init daemon will wait() for your grandchild once it exits.
See "Signals" in perlipc for other examples of code to do this. Zombies are not an issue with "system("prog &")". | |||||
feedback
|
|
If you want to daemonize your Perl script I'd looking into Proc::Daemon. | |||
feedback
|
|
Well you shouldn't use
That will start the process redirecting | ||||
|
feedback
|
|
If you want the watchdog "child" process to go away when the "parent" process exits then you don't really want the parent process to "fire and forget" the child process. You either need to fork (as described by brian d foy) or pass the PID of the parent to the child (so the latter can poll the process table - not recommended). | |||
feedback
|