跳到內容 跳到搜尋
方法
#

執行個體公用方法

_fork()

# File activesupport/lib/active_support/fork_tracker.rb, line 6
def _fork
  pid = super
  if pid == 0
    ForkTracker.after_fork_callback
  end
  pid
end