Gitiles
Code Review
Sign In
192.168.1.100
/
7520V3V
/
bfc6e71ee409bcae7f7b6850f4ebfbd3091c5851
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
sysdeps
/
sparc
/
sparc64
/
stackguard-macros.h
blob: cc0c12c0412901cfb00a80da71eb3a117b5d1c5a [
file
] [
log
] [
blame
]
#include
<stdint.h>
#define
STACK_CHK_GUARD \
({
uintptr_t
x
;
asm
(
"ldx [%%g7+0x28], %0"
:
"=r"
(
x
));
x
;
})
#define
POINTER_CHK_GUARD \
({
uintptr_t
x
;
asm
(
"ldx [%%g7+0x30], %0"
:
"=r"
(
x
));
x
;
})