Loading [MathJax]/extensions/tex2jax.js
PISM, A Parallel Ice Sheet Model 2.2.2-d6b3a29ca committed by Constantine Khrulev on 2025-03-28
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
pism_signal.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2007, 2017 Jed Brown and Constantine Khrulev
3
4 This file is part of Pism.
5
6 Pism is free software; you can redistribute it and/or modify it under the
7 terms of the GNU General Public License as published by the Free Software
8 Foundation; either version 3 of the License, or (at your option) any later
9 version.
10
11 Pism is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pism; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19*/
20
21#ifndef PISM_SIGNAL_H
22#define PISM_SIGNAL_H
23
24#include <signal.h>
25
26extern volatile sig_atomic_t pism_signal;
27
28#ifdef __cplusplus
29extern "C" {
30void pism_signal_handler(int sig);
31}
32#else
33void pism_signal_handler(int sig);
34#endif
35
36#endif /* PISM_SIGNAL_H */
volatile sig_atomic_t pism_signal
Definition pism_signal.c:23
void pism_signal_handler(int sig)
Definition pism_signal.c:25