method
fork
v6.1.7.7 -
Show latest stable
- Class:
ActiveSupport::ForkTracker::CoreExt
fork(*)public
No documentation available.
# File activesupport/lib/active_support/fork_tracker.rb, line 6
def fork(*)
if block_given?
super do
ForkTracker.check!
yield
end
else
unless pid = super
ForkTracker.check!
end
pid
end
end