in reply to Re^3: Interpreter eval counter out of bounds
in thread Interpreter eval counter out of bounds
use 'system' to restart itself and then exit.Except that when using system, the old process doesn't go away; it'll wait for the new one to finish.Your script will be happy with a fresh start.
Daemons restarting itself is a classical trick. But you got to use exec, not system. You want to replace yourself with the new instance, not create an additional one.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Interpreter eval counter out of bounds
by flexvault (Monsignor) on Jan 28, 2011 at 19:30 UTC |