Project

General

Profile

Bug #13577

Updated by Loïc Dachary over 8 years ago

The handle_siganl code below: I have a question,If any signal send to the osd, 

 The osd will shutdown. I think it should pass some do not impot signal. 

 <pre> 
 void OSD::handle_signal(int signum) 
 { 
   assert(signum == SIGINT || signum == SIGTERM); 
   derr << "*** Got signal " << sys_siglist[signum] << " ***" << dendl; 
   //suicide(128 + signum); 
   shutdown(); 
 } 
 </pre> 

Back