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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* Expression evaluation for plural form selection.
Copyright (C) 2000-2003, 2005 Free Software Foundation, Inc.
Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
/* Specification. */
#include "plural-eval.h"
#include <stddef.h>
#include <signal.h>
#include "plural-exp.h"
#define STATIC /*extern*/
/* Include the expression evaluation code from libintl, this time with
'extern' linkage. */
#include "eval-plural.h"
/* Exit point. Must be set before calling install_sigfpe_handler(). */
sigjmp_buf sigfpe_exit;
#if USE_SIGINFO
/* Additional information that is set before sigfpe_exit is invoked. */
int sigfpe_code;
/* Signal handler called in case of arithmetic exception (e.g. division
by zero) during plural_eval. */
static void
sigfpe_handler (int sig, siginfo_t *sip, void *scp)
{
sigfpe_code = sip->si_code;
siglongjmp (sigfpe_exit, 1);
}
#else
/* Signal handler called in case of arithmetic exception (e.g. division
by zero) during plural_eval. */
static void
sigfpe_handler (int sig)
{
siglongjmp (sigfpe_exit, 1);
}
#endif
void
install_sigfpe_handler (void)
{
#if USE_SIGINFO
struct sigaction action;
action.sa_sigaction = sigfpe_handler;
action.sa_flags = SA_SIGINFO;
sigemptyset (&action.sa_mask);
sigaction (SIGFPE, &action, (struct sigaction *) NULL);
#else
signal (SIGFPE, sigfpe_handler);
#endif
}
void
uninstall_sigfpe_handler (void)
{
#if USE_SIGINFO
struct sigaction action;
action.sa_handler = SIG_DFL;
action.sa_flags = 0;
sigemptyset (&action.sa_mask);
sigaction (SIGFPE, &action, (struct sigaction *) NULL);
#else
signal (SIGFPE, SIG_DFL);
#endif
}
|