URI:
       tpism_signal.c - pism - [fork] customized build of PISM, the parallel ice sheet model (tillflux branch)
  HTML git clone git://src.adamsgaard.dk/pism
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
       tpism_signal.c (891B)
       ---
            1 /*
            2  Copyright (C) 2007 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_signal.h"
           22 
           23 volatile sig_atomic_t pism_signal;
           24 
           25 void pism_signal_handler(int sig) {
           26 
           27   pism_signal = sig;
           28 
           29   signal(sig, pism_signal_handler);
           30 }
           31