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.c
Go to the documentation of this file.
1/*
2 Copyright (C) 2007, 2023 Jed Brown
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#include "pism/util/pism_signal.h"
22
23volatile sig_atomic_t pism_signal;
24
25void pism_signal_handler(int sig) {
26
27 pism_signal = sig;
28
29 signal(sig, pism_signal_handler);
30}
31
volatile sig_atomic_t pism_signal
Definition pism_signal.c:23
void pism_signal_handler(int sig)
Definition pism_signal.c:25