3 //=============================================================================
7 * @author Carlos O'Ryan <coryan@uci.edu>
9 //=============================================================================
11 #ifndef ACE_THREAD_HOOK_H
12 #define ACE_THREAD_HOOK_H
13 #include /**/ "ace/pre.h"
15 #include /**/ "ace/config-all.h"
17 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 #endif /* ACE_LACKS_PRAGMA_ONCE */
21 #include /**/ "ace/ACE_export.h"
23 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
26 * @class ACE_Thread_Hook
28 * @brief This class makes it possible to provide user-defined "start"
29 * hooks that are called before the thread entry point function
32 class ACE_Export ACE_Thread_Hook
35 /// Default constructor
36 ACE_Thread_Hook (void);
39 virtual ~ACE_Thread_Hook (void);
42 * This method can be overridden in a subclass to customize this
43 * pre-function call "hook" invocation that can perform
44 * initialization processing before the thread entry point @a func
45 * method is called back. The @a func and @a arg passed into the
46 * start hook are the same as those passed by the application that
49 virtual ACE_THR_FUNC_RETURN
start (ACE_THR_FUNC func
,
52 /// Sets the system wide thread hook, returns the previous thread
53 /// hook or 0 if none is set.
54 static ACE_Thread_Hook
*thread_hook (ACE_Thread_Hook
*hook
);
56 /// Returns the current system thread hook.
57 static ACE_Thread_Hook
*thread_hook (void);
60 ACE_END_VERSIONED_NAMESPACE_DECL
62 #include /**/ "ace/post.h"
63 #endif /* ACE_THREAD_HOOK_H */