# File lib/thin/server.rb, line 206 def setup_signals trap('QUIT') { stop } unless Thin.win? trap('INT') { stop! } trap('TERM') { stop! } end