module FFI::ModernForkTracking

def _fork

def _fork
  pid = super
  if pid == 0
    FFI._async_cb_dispatcher_atfork_child
  end
  pid
end