this repo has no description
1
fork

Configure Feed

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

Move _dyld_fork_child into libdyld

+9 -1
+1
src/libdyld/darwin.map
··· 31 31 __dyld_mod_term_funcs; 32 32 dyld_image_path_containing_address; 33 33 _dyld_find_unwind_sections; 34 + _dyld_fork_child; 34 35 }; 35 36
+6
src/libdyld/dyld_public.cpp
··· 191 191 return true; 192 192 } 193 193 194 + void _dyld_fork_child(void) 195 + { 196 + // The questions is whether we should somehow notify 197 + // glibc that we have forked. 198 + } 199 +
+2
src/libdyld/dyld_public.h
··· 39 39 uintptr_t compact_unwind_section_length; 40 40 }; 41 41 42 + void _dyld_fork_child(void); 43 + 42 44 uint32_t _dyld_image_count(void); 43 45 const struct mach_header* _dyld_get_image_header(uint32_t image_index); 44 46 intptr_t _dyld_get_image_vmaddr_slide(uint32_t image_index);
-1
src/libsystem/dummy.c
··· 1 1 2 2 void _notify_fork_child(void) {} 3 - void _dyld_fork_child(void) {} 4 3 void xpc_atfork_prepare(void) {} 5 4 void xpc_atfork_parent(void) {} 6 5 void xpc_atfork_child(void) {}