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
revert between 56095 -> 55830 in arch
[AROS.git]
/
arch
/
all-unix
/
kernel
/
cpu_ppc.c
blob
1d492cfd869cfa7bd13826aaf7eea14763cd1985
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
12
struct
SignalTranslation
const
sigs
[] = {
13
{
SIGILL
,
4
,
7
},
14
{
SIGTRAP
,
9
,
13
},
15
{
SIGBUS
,
2
,
3
},
16
{
SIGFPE
,
11
,
7
},
17
{
SIGSEGV
,
2
,
3
},
18
#ifdef HOST_OS_linux
19
{
SIGSTKFLT
,
14
,
3
},
20
#endif
21
{-
1
, -
1
, -
1
}
22
};