*fix* set _NET_WM_ICON_GEOMETRY (fixes issue 36)

*fix* updated ChangeLog



git-svn-id: http://tint2.googlecode.com/svn/trunk@508 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
Andreas.Fink85
2010-06-16 15:00:48 +00:00
parent 3a709ac550
commit 7fdcd2fbc9
5 changed files with 23 additions and 2 deletions

View File

@@ -97,8 +97,8 @@ void init (int argc, char *argv[])
sigaction(SIGHUP, &sa, 0);
// signal(SIGCHLD, SIG_IGN); // don't have to wait() after fork()
// BSD is too stupid to support pselect(), therefore we have to use select and hope that we do not
// end up in a race condition there
// BSD does not support pselect(), therefore we have to use select and hope that we do not
// end up in a race condition there (see 'man select()' on a linux machine for more information)
// block all signals, such that no race conditions occur before pselect in our main loop
// sigset_t block_mask;
// sigaddset(&block_mask, SIGINT);