--- loncom/loncnew 2003/09/16 09:46:42 1.24 +++ loncom/loncnew 2003/09/23 11:22:14 1.25 @@ -2,7 +2,7 @@ # The LearningOnline Network with CAPA # lonc maintains the connections to remote computers # -# $Id: loncnew,v 1.24 2003/09/16 09:46:42 foxr Exp $ +# $Id: loncnew,v 1.25 2003/09/23 11:22:14 foxr Exp $ # # Copyright Michigan State University Board of Trustees # @@ -45,6 +45,11 @@ # Change log: # $Log: loncnew,v $ +# Revision 1.25 2003/09/23 11:22:14 foxr +# Tested ability to receive sigusr2 This is now logged and must be +# properly implemented as a re-read of hosts and re-init of appropriate +# children. +# # Revision 1.24 2003/09/16 09:46:42 foxr # Added skeletal infrastructure to support SIGUSR2 update hosts request. # @@ -144,12 +149,6 @@ use LONCAPA::HashIterator; # # Disable all signals we might receive from outside for now. # -#$SIG{QUIT} = IGNORE; -#$SIG{HUP} = IGNORE; -#$SIG{USR1} = IGNORE; -#$SIG{INT} = IGNORE; -#$SIG{CHLD} = IGNORE; -#$SIG{__DIE__} = IGNORE; # Read the httpd configuration file to get perl variables @@ -1645,7 +1644,7 @@ sub CheckKids { =head1 UpdateKids -parent's SIGUSR1 handler. This handler: +parent's SIGUSR2 handler. This handler: =item @@ -1668,6 +1667,7 @@ the start of the master program and main =cut sub UpdateKids { + Log("INFO", "Updating connections via SIGUSR2"); }