this repo has no description
1
fork

Configure Feed

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

Initialize bootstrap port in libbootstrap

+3 -2
+3 -2
src/libsystem/init.c
··· 40 40 #include <mach-o/dyld_priv.h> 41 41 42 42 // system library initialisers 43 + extern void bootstrap_init(void); // from liblaunch.dylib 43 44 extern void mach_init(void); // from libsystem_kernel.dylib 44 45 extern void __libplatform_init(void *future_use, const char *envp[], const char *apple[], const struct ProgramVars *vars); 45 46 extern void __pthread_init(const struct _libpthread_functions *libpthread_funcs, const char *envp[], const char *apple[], const struct ProgramVars *vars); // from libsystem_pthread.dylib ··· 161 162 _dyld_initializer(); 162 163 163 164 libdispatch_init(); 164 - // _libxpc_initializer(); // Darling: not yet 165 + _libxpc_initializer(); 165 166 166 167 #if !(TARGET_OS_EMBEDDED || TARGET_OS_SIMULATOR) 167 168 // _libsecinit_initializer(); // Darling: not yet ··· 240 241 241 242 _asl_fork_child(); 242 243 _notify_fork_child(); 243 - // xpc_atfork_child(); // Darling: not yet 244 + xpc_atfork_child(); 244 245 // _libSC_info_fork_child(); // Darling: not yet 245 246 246 247 _pthread_fork_child_postinit();