From: Michael Gernoth Date: Sun, 13 Jan 2008 13:34:24 +0000 (+0100) Subject: ignore SIGCHLD to reap zombies X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/micropolis/commitdiff_plain/bab3cfa09c08ea30c99b416a5ec4c6c90a937d27 ignore SIGCHLD to reap zombies --- diff --git a/res/micropolis.tcl b/res/micropolis.tcl index 421fd2b..ff1ad9b 100644 --- a/res/micropolis.tcl +++ b/res/micropolis.tcl @@ -941,6 +941,7 @@ proc EchoPlaySound {soundspec} { global Sound if {$Sound} { echo PlaySound [lindex $soundspec 0] + signal ignore SIGCHLD exec play res/sounds/[string tolower [lindex $soundspec 0]].wav & } }