Update copyright notices with scripts/update-copyrights
[glibc.git] / manual / examples / sigh1.c
blob627651a4c319ec95d66738028e48e3d5ba7aeafa
1 /* Signal Handlers that Return
2 Copyright (C) 1991-2014 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, if not, see <http://www.gnu.org/licenses/>.
18 #include <signal.h>
19 #include <stdio.h>
20 #include <stdlib.h>
22 /* This flag controls termination of the main loop. */
23 volatile sig_atomic_t keep_going = 1;
25 /* The signal handler just clears the flag and re-enables itself. */
26 void
27 catch_alarm (int sig)
29 keep_going = 0;
30 signal (sig, catch_alarm);
33 void
34 do_stuff (void)
36 puts ("Doing stuff while waiting for alarm....");
39 int
40 main (void)
42 /* Establish a handler for SIGALRM signals. */
43 signal (SIGALRM, catch_alarm);
45 /* Set an alarm to go off in a little while. */
46 alarm (2);
48 /* Check the flag once in a while to see when to quit. */
49 while (keep_going)
50 do_stuff ();
52 return EXIT_SUCCESS;