summaryrefslogtreecommitdiff
path: root/TAO/tests/Cubit/Orbix/tpr/tpr.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-21 01:47:50 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-21 01:47:50 +0000
commit3780285be6195aef4ca526e1a7f88b7cdd8edec3 (patch)
treec39a5eb36d5863de1b043f9eafb94fd076fa549d /TAO/tests/Cubit/Orbix/tpr/tpr.cpp
parentd79706b30ce5e66aea5effc0306f77975cb31032 (diff)
downloadATCD-ACE-4_4_34.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_4_34'.ACE-4_4_34
Diffstat (limited to 'TAO/tests/Cubit/Orbix/tpr/tpr.cpp')
-rw-r--r--TAO/tests/Cubit/Orbix/tpr/tpr.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/TAO/tests/Cubit/Orbix/tpr/tpr.cpp b/TAO/tests/Cubit/Orbix/tpr/tpr.cpp
deleted file mode 100644
index 415410aea9f..00000000000
--- a/TAO/tests/Cubit/Orbix/tpr/tpr.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "tpr.h"
-
-void *
-worker(void *vp)
-{
- ACE_Thread_Control tc (ACE_Thread_Manager::instance ());
- CORBA::Orbix.continueThreadDispatch (*(CORBA::Request *)vp);
- return NULL;
-}
-
-
-int
-tpr_filter::inRequestPreMarshal(CORBA::Request &r, CORBA::Environment&)
-{
-// thread_t tid;
-// thr_create(NULL, 0, worker, (void *)&r, THR_DETACHED, &tid);
-
- ACE_Thread_Manager *thr_mgr = ACE_Thread_Manager::instance ();
- thr_mgr->spawn (ACE_THR_FUNC (worker),
- (void *) &r,
- THR_DETACHED);
-
- return -1;
-}
-
-tpr_filter tpr_dispatcher;