repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Documented GVF_SAVE_VAR alongside other flags, and removed a query/doubt
[AROS.git]
/
arch
/
all-unix
/
kernel
/
cpu_i386.c
blob
bc466737b6ea37be82669be79924a8578988539f
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <signal.h>
7
8
#include
"kernel_base.h"
9
#include
"kernel_intern.h"
10
11
struct
SignalTranslation
const
sigs
[] = {
12
{
SIGILL
,
4
,
6
},
13
{
SIGTRAP
,
9
,
1
},
14
{
SIGBUS
,
2
,
13
},
15
{
SIGFPE
,
11
,
16
},
16
{
SIGSEGV
,
2
,
14
},
17
#ifdef HOST_OS_linux
18
{
SIGSTKFLT
,
14
,
12
},
19
#endif
20
{-
1
, -
1
, -
1
}
21
};