Define MMAP2_PAGE_SHIFT to -1 for m68k.
[glibc.git] / sysdeps / x86_64 / stackguard-macros.h
blobd7fedb373733cf91bab77ecfc71000d9c921d796
1 #include <stdint.h>
3 #define STACK_CHK_GUARD \
4 ({ uintptr_t x; \
5 asm ("mov %%fs:%c1, %0" : "=r" (x) \
6 : "i" (offsetof (tcbhead_t, stack_guard))); x; })