http://code.google.com/p/tint2/issues/detail?id=430 Submitted By: David B. Cortarello (Nomius) Date: 18-05-2013 Initial Package Version: subversion trunk (revision 652) Description: Fix zombie (defunct) processes created in clock_action. This patch provides the following bugfixes: * This patch uses waitpid with WNOHANG to eliminate all zombie processes created by tint2 (in particular by the clock -right or left- click). This is done by a small hack in the update_clocks_min, called to "redraw" that area. --- src/clock/clock.c (revision 652) +++ src/clock/clock.c (working copy) @@ -23,6 +23,8 @@ #include #include #include +#include +#include #include "window.h" #include "server.h" @@ -98,6 +103,10 @@ // remember old_sec because after suspend/hibernate the clock should be updated directly, and not // on next minute change time_t old_sec = time_clock.tv_sec; + + // Little hack to wait executed commands in clock_action avoiding zombies + waitpid(-1, NULL, WNOHANG); + gettimeofday(&time_clock, 0); if (time_clock.tv_sec % 60 == 0 || time_clock.tv_sec - old_sec > 60) { int i;