diff options
author | leak <leak@bitmx.net> | 2014-07-06 01:42:12 +0200 |
---|---|---|
committer | leak <leak@bitmx.net> | 2014-07-06 01:42:35 +0200 |
commit | da3f6e923a0cb72976d7b56ace49023ecf58ceaa (patch) | |
tree | 55c767b5f3afddc339f088f2d45a470968a8bb5d /dep/acelite/ace/Thread_Hook.cpp | |
parent | 7befb26625dd1eeb237e223296d9ed8817297025 (diff) |
Completely remove ACE as dependency for TC - kkthxbye
Diffstat (limited to 'dep/acelite/ace/Thread_Hook.cpp')
-rw-r--r-- | dep/acelite/ace/Thread_Hook.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/dep/acelite/ace/Thread_Hook.cpp b/dep/acelite/ace/Thread_Hook.cpp deleted file mode 100644 index 03b2fd74cdb..00000000000 --- a/dep/acelite/ace/Thread_Hook.cpp +++ /dev/null @@ -1,30 +0,0 @@ -// $Id: Thread_Hook.cpp 94054 2011-05-11 18:28:20Z johnnyw $ - -#include "ace/Thread_Hook.h" -#include "ace/Object_Manager_Base.h" - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -ACE_Thread_Hook::~ACE_Thread_Hook () -{ -} - -ACE_THR_FUNC_RETURN -ACE_Thread_Hook::start (ACE_THR_FUNC func, void *arg) -{ - return (func) (arg); -} - -ACE_Thread_Hook * -ACE_Thread_Hook::thread_hook (ACE_Thread_Hook *hook) -{ - return ACE_OS_Object_Manager::thread_hook (hook); -} - -ACE_Thread_Hook * -ACE_Thread_Hook::thread_hook (void) -{ - return ACE_OS_Object_Manager::thread_hook (); -} - -ACE_END_VERSIONED_NAMESPACE_DECL |