Is it possible to start a process with exec and have that process run in the background, and (unlike System()), will that process be killed once an interrupt signal is passed to the parent process that created it?
|
|
|
|
|
|
|
Yeah. Ignoring SIGINT is a behavior specific to system(). If you roll your own system() using fork() and execl(), you won't get that. Of course, unless you're really careful you're going to make zombies. |
||||
|
