Remove obsolete mdp option ns-type
[gromacs.git] / src / gromacs / mdlib / sighandler.cpp
blobc0d394a1fb0478f54f03a36cc4bdf9105a82e6d1
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2012,2014,2015,2016,2017,2018, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
37 #include "gmxpre.h"
39 #include "sighandler.h"
41 #include "config.h"
43 #include <csignal>
44 #include <cstdlib>
46 #include "gromacs/utility/fatalerror.h"
48 const char *gmx_stop_cond_name[] =
50 "None",
51 "Stop at the next neighbor search step",
52 "Stop at the next step",
53 "Abort"
56 /* these do not neccesarily match the stop condition, but are
57 referred to in the signal handler. */
58 static const char *gmx_signal_name[] =
60 "None",
61 "INT",
62 "TERM",
63 "second INT/TERM",
64 "remote INT/TERM",
65 "remote second INT/TERM",
66 "USR1",
67 "Abort"
70 static volatile sig_atomic_t stop_condition = gmx_stop_cond_none;
71 static volatile sig_atomic_t last_signal_name = 0;
73 static volatile sig_atomic_t usr_condition = 0;
75 void gmx_reset_stop_condition()
77 stop_condition = gmx_stop_cond_none;
78 // last_signal_name and usr_condition are left untouched by reset.
81 static void signal_handler(int n)
83 switch (n)
85 /* windows doesn't do SIGINT correctly according to ANSI (yes, signals are in
86 ANSI C89, and windows spawns a thread specifically to run the INT signal
87 handler), but that doesn't matter for a simple signal handler like this. */
88 case SIGTERM:
89 case SIGINT:
90 /* we explicitly set things up to allow this: */
91 stop_condition++;
92 if (n == SIGINT)
94 last_signal_name = 1;
96 if (n == SIGTERM)
98 last_signal_name = 2;
100 if (stop_condition == gmx_stop_cond_next)
102 last_signal_name = 3;
104 if (stop_condition >= gmx_stop_cond_abort)
106 abort();
108 break;
109 #if HAVE_SIGUSR1
110 case SIGUSR1:
111 usr_condition = 1;
112 break;
113 #endif
114 default:
115 break;
119 static void gmx_signal(int signum)
121 #if HAVE_SIGACTION
122 struct sigaction act;
123 act.sa_handler = signal_handler;
124 sigemptyset(&act.sa_mask);
125 act.sa_flags = SA_RESTART;
126 sigaction(signum, &act, nullptr);
127 #else
128 signal(signum, signal_handler);
129 #endif
132 void signal_handler_install()
134 if (getenv("GMX_NO_TERM") == nullptr)
136 if (debug)
138 fprintf(debug, "Installing signal handler for SIGTERM\n");
140 gmx_signal(SIGTERM);
142 if (getenv("GMX_NO_INT") == nullptr)
144 if (debug)
146 fprintf(debug, "Installing signal handler for SIGINT\n");
148 gmx_signal(SIGINT);
150 #if HAVE_SIGUSR1
151 if (getenv("GMX_NO_USR1") == nullptr)
153 if (debug)
155 fprintf(debug, "Installing signal handler for SIGUSR1\n");
157 gmx_signal(SIGUSR1);
159 #endif
162 gmx_stop_cond_t gmx_get_stop_condition()
164 return static_cast<gmx_stop_cond_t>(stop_condition);
167 void gmx_set_stop_condition(gmx_stop_cond_t recvd_stop_cond)
169 if (recvd_stop_cond > stop_condition)
171 stop_condition = recvd_stop_cond;
172 if (stop_condition == gmx_stop_cond_next_ns)
174 last_signal_name = 4;
176 if (stop_condition == gmx_stop_cond_next)
178 last_signal_name = 5;
183 const char *gmx_get_signal_name()
185 return gmx_signal_name[last_signal_name];
188 gmx_bool gmx_got_usr_signal()
190 #if HAVE_SIGUSR1
191 gmx_bool ret = static_cast<gmx_bool>(usr_condition);
192 usr_condition = 0;
193 return ret;
194 #else
195 return FALSE;
196 #endif