summaryrefslogtreecommitdiff
path: root/src/pal/src/exception/signal.hpp
blob: c0c950ed4dcdfeabdf45644cc6cbb6bef643882b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*++



Module Name:

    exception/signal.hpp

Abstract:
    Private signal handling utilities for SEH



--*/

#ifndef _PAL_SIGNAL_HPP_
#define _PAL_SIGNAL_HPP_

#if !HAVE_MACH_EXCEPTIONS

/*++
Function :
    SEHInitializeSignals

    Set-up signal handlers to catch signals and translate them to exceptions

Parameters :
    flags: PAL initialization flags

Return :
    TRUE in case of a success, FALSE otherwise
--*/
BOOL SEHInitializeSignals(DWORD flags);

/*++
Function :
    SEHCleanupSignals

    Restore default signal handlers

    (no parameters, no return value)
--*/
void SEHCleanupSignals();

#if (__GNUC__ > 3 ||                                            \
     (__GNUC__ == 3 && __GNUC_MINOR__ > 2))
// For gcc > 3.2, sjlj exceptions semantics are no longer available
// Therefore we need to hijack out of signal handlers before second pass
#define HIJACK_ON_SIGNAL 1
#endif

#endif // !HAVE_MACH_EXCEPTIONS

#endif /* _PAL_SIGNAL_HPP_ */