Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / procmgmt / procmgmt_softsig.h
1 /*
2 * Copyright 2015, Sine Nomine Associates
3 * All Rights Reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
17 * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
20 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28 #ifndef OPENAFS_PROCMGMT_SOFTSIG_H
29 #define OPENAFS_PROCMGMT_SOFTSIG_H
30
31 #ifdef AFS_NT40_ENV
32
33 /*
34 * Windows implementation of the pthread soft signal processing.
35 *
36 * Similar to the replacment of signal, kill, etc, in procmgmt.h,
37 * this header replaces the opr softsig function names with the
38 * process management library names, to avoid sprinkling ifdefs
39 * in the code base. This header should been included after
40 * opr/softsig.h.
41 *
42 */
43
44 #define opr_softsig_Init() pmgt_SignalInit()
45 extern int pmgt_SignalInit(void);
46
47 #define opr_softsig_Register(sig, handler) pmgt_SignalRegister(sig, handler)
48 extern int pmgt_SignalRegister(int sig, void (__cdecl *handler)(int));
49
50 #endif /* AFS_NT40_ENV */
51 #endif /* OPENAFS_PROCMGMT_SOFTSIG_H */