module ActiveSupport::ForkTracker

def check!

def check!
  new_pid = Process.pid
  if @pid != new_pid
    @callbacks.each(&:call)
    @pid = new_pid
  end
end