module SQLite3::ForkSafety::CoreExt

def _fork

:nodoc:
def _fork
  pid = super
  if pid == 0
    ForkSafety.discard
  end
  pid
end