summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/asm/sigcontext.h
blob: a22bdcfe760903a6b622994b8cebeffa24924b57 (plain)
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
#ifndef _ASM_SIGCONTEXT_H
#define _ASM_SIGCONTEXT_H

#if defined(__i386__) || defined(__x86_64__)
#include <asm/i386-sigcontext.h>
#endif

#ifdef __sparc__
#include <asm/sparc-sigcontext.h>
#endif

#ifdef __mips__
#include <asm/mips-sigcontext.h>
#endif

#if defined(powerpc) || defined(__powerpc64__)
#include <asm/ppc-sigcontext.h>
#endif

#ifdef __alpha__
#include <asm/alpha-sigcontext.h>
#endif

#ifdef __arm__
#include <asm/arm-sigcontext.h>
#endif

#ifdef __hppa__
#include <asm/parisc-sigcontext.h>
#endif

#ifdef __ia64__
#include <asm/ia64-sigcontext.h>
#endif

#endif