mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-16 01:50:11 +00:00
ARM specific setjmp buffer.
This commit is contained in:
parent
1f83df4446
commit
2b998aac44
10
sysdeps/arm/bits/setjmp.h
Normal file
10
sysdeps/arm/bits/setjmp.h
Normal file
@ -0,0 +1,10 @@
|
||||
/* Define the machine-dependent type `jmp_buf'. ARM version. */
|
||||
|
||||
#ifndef _ASM
|
||||
/* Jump buffer contains v1-v6, sl, fp, sp, pc and (f4-f7) if we do FP. */
|
||||
#if __ARM_USES_FP
|
||||
typedef int __jmp_buf[22];
|
||||
#else
|
||||
typedef int __jmp_buf[10];
|
||||
#endif
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user