diff options
author | Steve Huston <shuston@riverace.com> | 2002-07-02 19:59:51 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2002-07-02 19:59:51 +0000 |
commit | 27847df8de460b35cba30a3560ff1ac5a0968a50 (patch) | |
tree | a77769a96ea72729688e1c40978f8f4a5512e0be /ace/Thread_Hook.h | |
parent | ce8b35ae5b7452eba601a0ed4f7b8d9d0c2584f4 (diff) | |
download | ATCD-27847df8de460b35cba30a3560ff1ac5a0968a50.tar.gz |
ChangeLogTag:Tue Jul 2 11:53:29 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/Thread_Hook.h')
-rw-r--r-- | ace/Thread_Hook.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Thread_Hook.h b/ace/Thread_Hook.h index 591e50193d6..deec5544479 100644 --- a/ace/Thread_Hook.h +++ b/ace/Thread_Hook.h @@ -37,12 +37,12 @@ public: * This method can be overridden in a subclass to customize this * pre-function call "hook" invocation that can perform * initialization processing before the thread entry point <func> - * method is called back. The <func> and <arg> passed into the + * method is called back. The @a func and @a arg passed into the * start hook are the same as those passed by the application that * spawned the thread. */ - virtual void *start (ACE_THR_FUNC func, - void *arg); + virtual ACE_THR_FUNC_RETURN start (ACE_THR_FUNC func, + void *arg); /// sets the system wide thread hook, returns the previous thread /// hook or 0 if none is set. |