summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormxiong <mxiong@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-27 04:28:21 +0000
committermxiong <mxiong@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-27 04:28:21 +0000
commit83dbf000ae8a532a1b28336834ef84f6770cf7ed (patch)
treea1c48174959a8a964e6b64c9e74742feb67302fb
parent1785d4704ca74b9784ade7bbb2094c9a1c2eede2 (diff)
downloadATCD-83dbf000ae8a532a1b28336834ef84f6770cf7ed.tar.gz
*** empty log message ***
-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;
}