Documented GVF_SAVE_VAR alongside other flags, and removed a query/doubt
[AROS.git] / arch / all-unix / kernel / cpu_i386.c
blobbc466737b6ea37be82669be79924a8578988539f
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <signal.h>
8 #include "kernel_base.h"
9 #include "kernel_intern.h"
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}