From c44379cc7d9c7aa113989237ab0f56db12aa5219 Mon Sep 17 00:00:00 2001 From: "William R. Otte" Date: Mon, 24 Jul 2006 15:50:30 +0000 Subject: Repo restructuring --- .../Change_Receiver_FlowSpec/QoS_Signal_Handler.h | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 ACE/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h (limited to 'ACE/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h') diff --git a/ACE/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h b/ACE/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h new file mode 100644 index 00000000000..35b9f3a19e7 --- /dev/null +++ b/ACE/examples/QOS/Change_Receiver_FlowSpec/QoS_Signal_Handler.h @@ -0,0 +1,45 @@ +/* -*- C++ -*- */ +// $Id$ + +// ===================================================================== +// +// = LIBRARY +// ACE_wrappers/examples/QOS +// +// = FILENAME +// QoS_Signal_Handler.h +// +// = AUTHOR +// Vishal Kachroo +// +// ===================================================================== + +#ifndef QOS_SIGNAL_HANDLER_H +#define QOS_SIGNAL_HANDLER_H + +#include "ace/Event_Handler.h" +#include "ace/QoS/QoS_Session.h" + +class QoS_Signal_Handler : public ACE_Event_Handler +{ + // TITLE + // This class Handles the SIGINT signal through the Reactor. + // Useful to gracefully release QoS sessions. + +public: + + QoS_Signal_Handler (ACE_QoS_Session *qos_session); + // constructor. + + int handle_signal(int signum, siginfo_t*,ucontext_t*); + // Override this method to implement graceful shutdown. + +private: + + ACE_QoS_Session *qos_session_; + // Session to be gracefully shutdown. + +}; + +#endif /* QOS_SIGNAL_HANDLER_H */ + -- cgit v1.2.1