aboutsummaryrefslogtreecommitdiff
path: root/src/tests/signaltest.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2014-02-18 18:34:35 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2014-02-18 18:34:35 (GMT)
commit43bdf499d56c09a520dc3bc03438dee4092d3d58 (patch)
treefc08fe113eb7c577eb402bf9ffebd8038d4f90da /src/tests/signaltest.cc
parent3696562aa87c7e68cb8b00b85f0e8d5cf2d199bf (diff)
downloadfluxbox-43bdf499d56c09a520dc3bc03438dee4092d3d58.zip
fluxbox-43bdf499d56c09a520dc3bc03438dee4092d3d58.tar.bz2
Fix race condition on shutdown
This commit fixes primarily a race condition that occurs when xinit(1) shuts down: by not acting properly fluxbox gets caught in an infinite loop. It caused bug #1100. xinit(1) sends a SIGHUP signal to all processes. fluxbox tries to shutdown itself properly by shutting down workspaces and screens. While doing that, the Xserver might be gone already. Additionally, fluxbox used to restart() itself on SIGHUP, which is clearly not the right thing to do when xinit(1) is about to end the session. So, fluxbox does this: * handling SIGHUP now shuts down fluxbox without clearing workspaces and screens. * A 2 second alarm() is triggered in Fluxbox::shutdown() as a last resort * XSetIOErrorHandler() is used to recognize the disconnect from the xserver. * SIGUSR1 is for restarting fluxbox, SIGUSR2 for reloading the config * FbTk/SignalHandler.cc/hh is gone; this unused abstraction served currently no real purpose. Signal handling is now done in main.cc * Unrelated to the issue itself src/main.cc was trimmed down quite a bit and the code (responsible for handling the command line interface) was moved to src/cli*
Diffstat (limited to 'src/tests/signaltest.cc')
-rw-r--r--src/tests/signaltest.cc86
1 files changed, 0 insertions, 86 deletions
diff --git a/src/tests/signaltest.cc b/src/tests/signaltest.cc
deleted file mode 100644
index 09ebdac..0000000
--- a/src/tests/signaltest.cc
+++ /dev/null
@@ -1,86 +0,0 @@
1// signaltest.cc for testing signal handler in fluxbox
2// Copyright (c) 2002 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22#include "../FbTk/SignalHandler.hh"
23
24#include <iostream>
25#ifdef HAVE_CASSERT
26 #include <cassert>
27#else
28 #include <assert.h>
29#endif
30
31using namespace std;
32using namespace FbTk;
33
34class IntSig:public SignalEventHandler {
35public:
36 void handleSignal(int signum) {
37 assert(signum == SIGINT);
38 cerr<<"Signal SIGINT!"<<endl;
39 exit(0);
40 }
41};
42
43class AllSig:public SignalEventHandler {
44public:
45 void handleSignal(int signum) {
46 switch (signum) {
47 case SIGSEGV:
48 cerr<<"SIGSEGV";
49 break;
50 case SIGTERM:
51 cerr<<"SIGTERM";
52 break;
53 case SIGUSR1:
54 cerr<<"SIGUSR1";
55 break;
56 case SIGUSR2:
57 cerr<<"SIGUSR2";
58 break;
59 default:
60 cerr<<"signum = "<<signum;
61 }
62 cerr<<endl;
63 if (signum == SIGTERM)
64 exit(1); // end program
65 }
66};
67
68int main(int argc, char **argv) {
69 SignalHandler &sigh = SignalHandler::instance();
70
71 IntSig handler;
72 AllSig allhand;
73
74 sigh.registerHandler(SIGINT, &handler);
75 sigh.registerHandler(SIGSEGV, &allhand);
76 sigh.registerHandler(SIGTERM, &allhand);
77 sigh.registerHandler(SIGUSR1, &allhand);
78 sigh.registerHandler(SIGUSR2, &allhand);
79
80 cerr<<"Send signals to me :)"<<endl;
81 while (1) {
82
83 }
84}
85
86