removed leftover debug statements

This commit is contained in:
maroy 2004-11-25 15:06:10 +00:00
parent 145e0da83f
commit 678b9826d0
1 changed files with 1 additions and 5 deletions

View File

@ -22,7 +22,7 @@
Author : $Author: maroy $ Author : $Author: maroy $
Version : $Revision: 1.2 $ Version : $Revision: 1.3 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SignalDispatcher.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SignalDispatcher.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -132,16 +132,12 @@ SignalDispatcher :: removeHandler(
} }
#include <iostream>
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Our signal dispatcher * Our signal dispatcher
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
SignalDispatcher :: dispatcher(int signal) throw () SignalDispatcher :: dispatcher(int signal) throw ()
{ {
std::cerr << "dispatcher called with signal " << signal << std::endl;
std::cerr << "handler for this signal: " << handlers[signal] << std::endl;
handlers[signal]->handleSignal(signal); handlers[signal]->handleSignal(signal);
} }