this repo has no description
1
fork

Configure Feed

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

Setup sigexc support at libsystem_kernel load

+2
+2
src/kernel/libsyscall/wrappers/_libkernel_init.c
··· 30 30 #include "elfcalls_setup.h" 31 31 32 32 extern int mach_init(void); 33 + extern void sigexc_setup(void); 33 34 34 35 /* dlsym() funcptr is for legacy support in exc_catcher */ 35 36 void* (*_dlsym)(void*, const char*) __attribute__((visibility("hidden"))); ··· 49 50 } 50 51 51 52 setup_elfcalls(apple); 53 + sigexc_setup(); 52 54 mach_init(); 53 55 }