GitHub Actions: Try MSVC builds with /std:c++17 and 20
[ACE_TAO.git] / ACE / ace / Thread_Hook.cpp
blobf1b07e3925a76840498aba8351df801e6a90d58e
1 #include "ace/Thread_Hook.h"
2 #include "ace/Object_Manager_Base.h"
4 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
6 ACE_Thread_Hook::ACE_Thread_Hook()
10 ACE_Thread_Hook::~ACE_Thread_Hook ()
14 ACE_THR_FUNC_RETURN
15 ACE_Thread_Hook::start (ACE_THR_FUNC func, void *arg)
17 return (func) (arg);
20 ACE_Thread_Hook *
21 ACE_Thread_Hook::thread_hook (ACE_Thread_Hook *hook)
23 return ACE_OS_Object_Manager::thread_hook (hook);
26 ACE_Thread_Hook *
27 ACE_Thread_Hook::thread_hook (void)
29 return ACE_OS_Object_Manager::thread_hook ();
32 ACE_END_VERSIONED_NAMESPACE_DECL