mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	* lib/un.rb (httpd): SIGQUIT and SIGHUP are not guaranteed to exist.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
		
							parent
							
								
									81f1c62e3e
								
							
						
					
					
						commit
						073ac4ff5a
					
				
					 2 changed files with 6 additions and 2 deletions
				
			
		|  | @ -317,9 +317,9 @@ def httpd | |||
|     s = WEBrick::HTTPServer.new(options) | ||||
|     shut = proc {s.shutdown} | ||||
|     Signal.trap("TERM", shut) | ||||
|     Signal.trap("QUIT", shut) | ||||
|     Signal.trap("QUIT", shut) if Signal.list.has_key?("QUIT") | ||||
|     if STDIN.tty? | ||||
|       Signal.trap("HUP", shut) | ||||
|       Signal.trap("HUP", shut) if Signal.list.has_key?("HUP") | ||||
|       Signal.trap("INT", shut) | ||||
|     end | ||||
|     s.start | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 usa
						usa