mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-02-21 20:20:34 +09:00
10 lines
176 B
Ruby
10 lines
176 B
Ruby
require File.expand_path("../config/environment", File.dirname(__FILE__))
|
|
|
|
Signal.trap :SIGPROF do
|
|
Thread.list.each do |t|
|
|
puts t
|
|
puts t.backtrace
|
|
puts
|
|
end
|
|
end
|