File: vdso-asmoffset.h

package info (click to toggle)
qemu 1%3A10.0.3%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 413,576 kB
  • sloc: ansic: 4,733,420; pascal: 114,769; python: 105,506; asm: 68,406; sh: 52,852; makefile: 27,462; perl: 18,778; cpp: 11,435; xml: 3,404; objc: 2,877; yacc: 2,505; php: 1,299; tcl: 1,296; lex: 1,110; sql: 71; awk: 43; sed: 35; javascript: 7
file content (20 lines) | stat: -rw-r--r-- 626 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Size of dummy stack frame allocated when calling signal handler.
 * See arch/powerpc/include/asm/ptrace.h.
 */
#ifdef TARGET_ABI32
# define SIGNAL_FRAMESIZE                   64
#else
# define SIGNAL_FRAMESIZE                   128
#endif

#ifdef TARGET_ABI32
# define offsetof_sigframe_mcontext         0x20
# define offsetof_rt_sigframe_mcontext      0x140
# define offsetof_mcontext_fregs            0xc0
# define offsetof_mcontext_vregs            0x1d0
#else
# define offsetof_rt_sigframe_mcontext      0xe8
# define offsetof_mcontext_fregs            0x180
# define offsetof_mcontext_vregs_ptr        0x288
#endif