more work towards compiling under cygwin
[libbear.git] / physics / src / handleSignal.cpp
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
18 #include "handleSignal.h"
19
20 #include <iostream>
21 #include <signal.h>
22 #include <stdlib.h>
23
24 /// ***** Private Method Headers *****
25
26 #if 0 //ndef __WIN32__
27 static void sighandler( int iSig );
28 #endif // __WIN32__
29
30 /// ***** Public Methods *****
31
32 void installSignal()
33 {
34 #if 0 //ndef __WIN32__
35     // register signal handler
36     struct sigaction sa;
37     sigemptyset( &sa.sa_mask );
38     sa.sa_handler = sighandler;
39     sa.sa_flags = 0;
40
41     if ( sigaction( SIGINT, &sa, NULL ) < 0 )
42     {
43         std::cerr << "could not install SIGINT handler" << std::endl;
44     }
45 #endif // __WIN32__
46 }
47
48 /// ***** Private Methods *****
49
50 #if 0 //ndef __WIN32__
51
52 // signal handler function
53 void sighandler( int iSig )
54 {
55     switch(iSig)
56     {
57         case SIGINT:
58             std::cerr << "SIGINT caught" << std::endl;
59             break;
60         default:
61             std::cerr << "UNKNOWN caught (" << iSig << ")" << std::endl;
62             break;
63     }
64
65     abort();
66 }
67
68 #endif // __WIN32__