diff options
Diffstat (limited to 'ace/Thread_Adapter.cpp')
-rw-r--r-- | ace/Thread_Adapter.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Thread_Adapter.cpp b/ace/Thread_Adapter.cpp index 69696552643..7fe01965b46 100644 --- a/ace/Thread_Adapter.cpp +++ b/ace/Thread_Adapter.cpp @@ -88,6 +88,12 @@ ACE_Thread_Adapter::invoke (void) #endif /* ! ACE_USE_THREAD_MANAGER_ADAPTER */ + return this->invoke_i (); +} + +void * +ACE_Thread_Adapter::invoke_i (void) +{ // Extract the arguments. ACE_THR_FUNC_INTERNAL func = ACE_reinterpret_cast (ACE_THR_FUNC_INTERNAL, this->user_func_); |