all repos — tint2 @ 764618211319c8d3572d9b5ccb305c307443cd0a

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

fixed defunct process after fork

git-svn-id: http://tint2.googlecode.com/svn/trunk@140 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
lorthiois@bbsoft.fr lorthiois@bbsoft.fr@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

764618211319c8d3572d9b5ccb305c307443cd0a

parent

107c838cd23fc0407e480c21714fb61e034d7da3

2 files changed, 3 insertions(+), 0 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,3 +1,5 @@

+2009-07-04 +- fixed 'defunct' process after fork ---------------------------------------------------------------- 2009-06-30 thilor77 <lorthiois@bbsoft.fr>
M src/tint.csrc/tint.c

@@ -53,6 +53,7 @@ signal(SIGUSR1, signal_handler);

signal(SIGINT, signal_handler); signal(SIGTERM, signal_handler); signal(SIGHUP, signal_handler); + signal(SIGCLD, SIG_IGN); // don't have to wait() after fork() // set global data memset(&server, 0, sizeof(Server_global));