]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MINICERN/packlib/kernlib/kerngen/ccgen/sigunbl.c
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / ccgen / sigunbl.c
1 /*
2  * $Id$
3  *
4  * $Log$
5  * Revision 1.2  1997/02/04 17:34:43  mclareni
6  * Merge Winnt and 97a versions
7  *
8  * Revision 1.1.1.1.2.1  1997/01/21 11:29:43  mclareni
9  * All mods for Winnt 96a on winnt branch
10  *
11  * Revision 1.1.1.1  1996/02/15 17:49:27  mclareni
12  * Kernlib
13  *
14  */
15 #include "kerngen/pilot.h"
16 /*>    ROUTINE SIGUNBL
17   CERN PROGLIB#         SIGUNBL         .VERSION KERNFOR  4.42  951011
18   ORIG. 10/10/95, JZ
19   unblock all signals    */
20 #include <stdio.h>
21 #include <signal.h>
22 #include "kerngen/fortranc.h"
23
24 #if defined(CERNLIB_QX_SC)
25 void type_of_call sigunbl_()
26 #endif
27 #if defined(CERNLIB_QXNO_SC)
28 void type_of_call sigunbl()
29 #endif
30 #if defined(CERNLIB_QXCAPT)
31 void type_of_call SIGUNBL()
32 #endif
33 {
34 #ifndef CERNLIB_WINNT
35       sigset_t   newmask;
36
37       sigemptyset(&newmask);
38       sigprocmask (SIG_SETMASK, &newmask, NULL);
39 #else
40       DoAttention(" Attention !!! SIGUNBL is not implemented for Windows NT\n");
41 #endif
42       return;
43 }
44 /*> END <----------------------------------------------------------*/