This website requires JavaScript.
Explore
Help
Sign In
RepoMirrors
/
musl
mirror of
git://git.musl-libc.org/musl
Watch
1
Star
0
Fork
You've already forked musl
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
bd67959f3a
musl
/
arch
/
powerpc
/
bits
/
setjmp.h
2 lines
42 B
C
Raw
Normal View
History
Unescape
Escape
change jmp_buf to share an underlying type and struct tag with sigjmp_buf this is necessary to meet the C++ ABI target. alternatives were considered to avoid the size increase for non-sig jmp_buf objects, but they seemed to have worse properties. moreover, the relative size increase is only extreme on x86[_64]; one way of interpreting this is that, if the size increase from this patch makes jmp_buf use too much memory, then the program was already using too much memory when built for non-x86 archs.
2013-07-24 06:17:02 +00:00
typedef
unsigned
long
long
__jmp_buf
[
56
]
;