-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.c
63 lines (46 loc) · 771 Bytes
/
error.c
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
#include <signal.h>
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#include "error.h"
#include "eval.h"
#include "output.h"
#include "trap.h"
struct jmploc *handler;
int suppressint;
volatile sig_atomic_t intpending;
void exraise(int e)
{
if (!handler)
abort();
if (forked)
_exit(exitstatus);
INTOFF;
longjmp(handler->loc, e);
}
void onint(void)
{
intpending = 0;
sigclearmask();
exitstatus = SIGINT + 128;
exraise(EXINT);
}
void raiseexc(int e, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vperrorf(fmt, ap);
exraise(e);
/* unreachable */
va_end(ap);
}
void raiseerr(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vperrorf(fmt, ap);
exitstatus = 2;
exraise(EXERR);
/* unreachable */
va_end(ap);
}