diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-23 03:06:19 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-04-23 03:06:19 +0000 |
commit | 8a30729dc5a0364cbfb2750c94e13015ada77784 (patch) | |
tree | 517d13a21fce9eefd531d325e4edb5ba94f70e58 /ace/Thread_Manager.i | |
parent | 6cc42ca0d9f466c92dd2d6d977f4bbfac9de7012 (diff) | |
download | ATCD-8a30729dc5a0364cbfb2750c94e13015ada77784.tar.gz |
ChangeLogTag:Thu Apr 22 20:01:12 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/Thread_Manager.i')
-rw-r--r-- | ace/Thread_Manager.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Thread_Manager.i b/ace/Thread_Manager.i index 4a49398eaab..5f3f9f714cb 100644 --- a/ace/Thread_Manager.i +++ b/ace/Thread_Manager.i @@ -96,14 +96,14 @@ ACE_Thread_Descriptor_Base::~ACE_Thread_Descriptor_Base (void) { } -ACE_INLINE int +ACE_INLINE bool ACE_Thread_Descriptor_Base::operator==(const ACE_Thread_Descriptor_Base &rhs) const { return ACE_OS::thr_cmp (this->thr_handle_, rhs.thr_handle_) == 0 && ACE_OS::thr_equal (this->thr_id_, rhs.thr_id_) == 0; } -ACE_INLINE int +ACE_INLINE bool ACE_Thread_Descriptor_Base::operator!=(const ACE_Thread_Descriptor_Base &rhs) const { return !(*this == rhs); |