this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix setjmp on i386

+5
+5
src/kernel/libsyscall/os/tsd.h
··· 199 199 200 200 #if defined(__i386__) || defined(__x86_64__) 201 201 202 + #if defined(DARLING) && defined(__i386__) && !defined(__x86_64__) 203 + #define _OS_PTR_MUNGE(_reg) \ 204 + xor %fs:_OS_TSD_OFFSET(__TSD_PTR_MUNGE), _reg 205 + #else 202 206 #define _OS_PTR_MUNGE(_reg) \ 203 207 xor %gs:_OS_TSD_OFFSET(__TSD_PTR_MUNGE), _reg 208 + #endif 204 209 205 210 #define _OS_PTR_UNMUNGE(_reg) \ 206 211 _OS_PTR_MUNGE(_reg)