diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-04 23:00:38 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-04 23:00:38 +0000 |
commit | f2fb35487f90eda3c64ea873b79bf6a6b7aa1112 (patch) | |
tree | a9d12fb10fa41cab7e28e882e70fa101b0ed6464 /ace/TP_Reactor.cpp | |
parent | 3f274528f572467e6be98233b90b74948d31f4da (diff) | |
download | ATCD-f2fb35487f90eda3c64ea873b79bf6a6b7aa1112.tar.gz |
ChangeLogTag:Fri Aug 4 15:53:27 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'ace/TP_Reactor.cpp')
-rw-r--r-- | ace/TP_Reactor.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ace/TP_Reactor.cpp b/ace/TP_Reactor.cpp index 202c4cd845a..91f8dcff381 100644 --- a/ace/TP_Reactor.cpp +++ b/ace/TP_Reactor.cpp @@ -64,6 +64,27 @@ ACE_TP_Reactor::notify_handle (ACE_EH_Dispatch_Info &dispatch_info) this->resume_handler (handle) : 0); } +int +ACE_TP_Reactor::owner (ACE_thread_t, ACE_thread_t *o_id) +{ + ACE_TRACE ("ACE_TP_Reactor::owner"); + if (o_id) + *o_id = ACE_Thread::self (); + + return 0; + +} + +int +ACE_TP_Reactor::owner (ACE_thread_t *t_id) +{ + ACE_TRACE ("ACE_TP_Reactor::owner"); + *t_id = ACE_Thread::self (); + + return 0; + +} + // Overwrites ACE_Select_Reactor::dispatch_io_set() to *not* dispatch // any event handlers. The information of one activated event handler // is stored away, so that the event handler can be dispatch later. |