Skip to Content Skip to Search
v7.1.0
module ActiveSupport::ForkTracker::ModernCoreExt
Methods
#

Public instance methods

_fork()

Permalink
Source code GitHub
# File activesupport/lib/active_support/fork_tracker.rb, line 6
def _fork
  pid = super
  if pid == 0
    ForkTracker.after_fork_callback
  end
  pid
end
Definition files