/[MITgcm]/MITgcm/eesupp/src/sigreg.c
ViewVC logotype

Contents of /MITgcm/eesupp/src/sigreg.c

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download)
Sun Dec 4 13:57:08 2005 UTC (19 years, 7 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint58e_post, checkpoint57y_post, checkpoint57y_pre, checkpoint58, checkpoint57x_post, checkpoint58d_post, checkpoint58c_post, checkpoint58a_post, checkpoint57z_post, checkpoint58b_post
Changes since 1.1: +2 -2 lines
File MIME type: text/plain
 o fix bad syntax -- as reported by Martin Losch

1 /*
2 * $Header: /u/gcmpack/MITgcm/eesupp/src/sigreg.c,v 1.1 2005/12/03 08:30:32 edhill Exp $
3 * $Name: $
4
5 //BOP
6 // !ROUTINE: sigreg
7 // !INTERFACE:
8 sigreg()
9
10 // !DESCRIPTION:
11 // Register a signal handler
12
13 //EOP
14
15 */
16
17 /* Here, we get the definition of the FC_NAMEMANGLE() macro. */
18 #include "FC_NAMEMANGLE.h"
19
20 /* #define FC_NAMEMANGLE(X) X ## _ */
21
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <signal.h>
25 #include <errno.h>
26 #include <ucontext.h>
27
28 int * ip;
29
30 static void killhandler(
31 unsigned int sn, siginfo_t si, struct ucontext *sc )
32 {
33 *ip = *ip + 1;
34 return;
35 }
36
37 /* int main( int argc, char ** argv ) */
38 void FC_NAMEMANGLE(sigreg) (int * aip)
39 {
40 struct sigaction s;
41 ip = aip;
42 s.sa_flags = SA_SIGINFO;
43 s.sa_sigaction = (void *)killhandler;
44 if(sigaction (SIGTERM,&s,(struct sigaction *)NULL)) {
45 printf("Sigaction returned error = %d\n", errno);
46 exit(0);
47 }
48 return;
49 }
50
51

  ViewVC Help
Powered by ViewVC 1.1.22