summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/AMI_Latency/Server_Task.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-11-17 14:57:33 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-11-17 14:57:33 +0000
commitb35f5d6bbaa8268af1fcef124db028fa8e031851 (patch)
treeb728fd5d3fed3638487980b582c55650ed234ac7 /TAO/performance-tests/AMI_Latency/Server_Task.cpp
parentf83d24cf1af4c95fa7dc584defd4c1c8b27fe5cb (diff)
downloadATCD-sendfile-optimization.tar.gz
This commit was manufactured by cvs2svn to create branchsendfile-optimization
'sendfile-optimization'.
Diffstat (limited to 'TAO/performance-tests/AMI_Latency/Server_Task.cpp')
-rw-r--r--TAO/performance-tests/AMI_Latency/Server_Task.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/performance-tests/AMI_Latency/Server_Task.cpp b/TAO/performance-tests/AMI_Latency/Server_Task.cpp
deleted file mode 100644
index 6df92f32a3f..00000000000
--- a/TAO/performance-tests/AMI_Latency/Server_Task.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// $Id$
-//
-#include "Server_Task.h"
-
-ACE_RCSID(AMI_Latency, Server_Task, "$Id$")
-
-Server_Task::Server_Task (CORBA::ORB_ptr orb)
- : orb_ (CORBA::ORB::_duplicate (orb))
-{
-}
-
-int
-Server_Task::svc (void)
-{
- ACE_DECLARE_NEW_CORBA_ENV;
- ACE_TRY
- {
- this->orb_->run (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_TRY_CHECK;
- }
- ACE_CATCHANY {} ACE_ENDTRY;
- return 0;
-}