summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/CIAO/DAnCE/examples/Quoter/Distributor/Distributor_exec.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/TAO/CIAO/DAnCE/examples/Quoter/Distributor/Distributor_exec.cpp b/TAO/CIAO/DAnCE/examples/Quoter/Distributor/Distributor_exec.cpp
index 1ddead98d3b..5a2e3563541 100644
--- a/TAO/CIAO/DAnCE/examples/Quoter/Distributor/Distributor_exec.cpp
+++ b/TAO/CIAO/DAnCE/examples/Quoter/Distributor/Distributor_exec.cpp
@@ -100,9 +100,17 @@ namespace StockDistributor_Impl
}
int
- pulse_Generator::handle_close (ACE_HANDLE,
- ACE_Reactor_Mask)
+ pulse_Generator::handle_close (ACE_HANDLE handle,
+ ACE_Reactor_Mask close_mask)
{
+ if (CIAO::debug_level () > 0)
+ {
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT ("[%x] handle = %d, close_mask = %d\n"),
+ this,
+ handle,
+ close_mask));
+ }
return 0;
}