File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ __attribute__((constructor)) static void initializer(void)
137
137
else {
138
138
void * systemhookHandle = dlopen ("systemhook.dylib" , RTLD_NOLOAD );
139
139
if (systemhookHandle ) {
140
- // On iOS 15 arm64e, instead of using instruction replacements, rebind __fork instead
141
- // Less instruction replacements = Less spinlock panics
140
+ // On iOS 15 arm64e, instead of using instruction replacements, rebind everything that calls __fork instead
141
+ // Less instruction replacements = Less spinlock panics (DO NOT QUOTE ME ON THIS)
142
142
kern_return_t (* litehook_rebind_symbol_globally )(void * source , void * target ) = dlsym (systemhookHandle , "litehook_rebind_symbol_globally" );
143
143
if (litehook_rebind_symbol_globally ) {
144
144
litehook_rebind_symbol_globally ((void * )fork , (void * )fork_hook );
You can’t perform that action at this time.
0 commit comments