summaryrefslogtreecommitdiff
path: root/ndk/sources/android/libportable/common/include/asm/sigcontext_portable.h
blob: 477b3e847c6c2099442db92557d2272dbae5ee71 (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
37
38
39
40
/****************************************************************************
 Derived from gdk/platforms/android-14/arch-arm/usr/include/asm/sigcontext.h
 ****************************************************************************
 ***
 ***   This header was ORIGINALLY automatically generated from a Linux kernel 
 ***   header of the same name, to make information necessary for userspace to
 ***   call into the kernel available to libc.  It contains only constants,
 ***   structures, and macros generated from the original header, and thus,
 ***   contains no copyrightable information.
 ***
 ****************************************************************************
 ****************************************************************************/
#ifndef _ASMARM_SIGCONTEXT_PORTABLE_H
#define _ASMARM_SIGCONTEXT_PORTABLE_H

struct sigcontext_portable {
 unsigned long trap_no;
 unsigned long error_code;
 unsigned long oldmask;
 unsigned long arm_r0;
 unsigned long arm_r1;
 unsigned long arm_r2;
 unsigned long arm_r3;
 unsigned long arm_r4;
 unsigned long arm_r5;
 unsigned long arm_r6;
 unsigned long arm_r7;
 unsigned long arm_r8;
 unsigned long arm_r9;
 unsigned long arm_r10;
 unsigned long arm_fp;
 unsigned long arm_ip;
 unsigned long arm_sp;
 unsigned long arm_lr;
 unsigned long arm_pc;
 unsigned long arm_cpsr;
 unsigned long fault_address;
};

#endif