added better thread safty ... still broke
[physics.git] / src / handleSignal.cpp
CommitLineData
e68f847b
PG
1/*
2 * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
7cbd4505
PG
18#include "handleSignal.h"
19
20#include <iostream>
21#include <signal.h>
f463ae40 22#include <stdlib.h>
7cbd4505
PG
23
24/// ***** Private Method Headers *****
7cbd4505 25
617dcc71 26void sighandler( int sig );
7cbd4505
PG
27
28/// ***** Public Methods *****
29
30void installSignal()
31{
3c3c195d 32#ifndef __WIN32__
7cbd4505
PG
33 // register signal handler
34 struct sigaction sa;
35 sigemptyset( &sa.sa_mask );
36 sa.sa_handler = sighandler;
37 sa.sa_flags = 0;
38
39 if ( sigaction( SIGINT, &sa, NULL ) < 0 )
40 {
41 std::cerr << "could not install SIGINT handler" << std::endl;
42 }
3c3c195d 43#endif // __WIN32__
7cbd4505
PG
44}
45
46/// ***** Private Methods *****
47
48// signal handler function
49void sighandler( int sig )
50{
3c3c195d 51#ifndef __WIN32__
7cbd4505
PG
52 switch(sig)
53 {
54 case SIGINT:
55 std::cerr << "SIGINT caught" << std::endl;
56 break;
57 default:
58 std::cout << "UNKNOWN caught";
59 }
60
61 // normally an abort is better ... but this is just SIGINT
62 exit(sig);
3c3c195d 63#endif // __WIN32__
7cbd4505 64}