Skip to content

Commit 797d7bb

Browse files
committed
Fix comments being wrong
1 parent 4f6b237 commit 797d7bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BaseBin/forkfix/src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ __attribute__((constructor)) static void initializer(void)
137137
else {
138138
void *systemhookHandle = dlopen("systemhook.dylib", RTLD_NOLOAD);
139139
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)
142142
kern_return_t (*litehook_rebind_symbol_globally)(void *source, void *target) = dlsym(systemhookHandle, "litehook_rebind_symbol_globally");
143143
if (litehook_rebind_symbol_globally) {
144144
litehook_rebind_symbol_globally((void *)fork, (void *)fork_hook);

0 commit comments

Comments
 (0)