diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-08 00:06:10 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-01-08 00:06:10 +0000 |
commit | c74f8ce745a8d81101b4da0be11f448704d53c46 (patch) | |
tree | 31e6b83e17ad25bbe82cd48f27eeca036e5dbe73 /ace/ReactorEx.i | |
parent | f9c477469e3c82edbf12a7e1f2eca7422e7f0d1f (diff) | |
download | ATCD-c74f8ce745a8d81101b4da0be11f448704d53c46.tar.gz |
foo
Diffstat (limited to 'ace/ReactorEx.i')
-rw-r--r-- | ace/ReactorEx.i | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ace/ReactorEx.i b/ace/ReactorEx.i index a5cd53034a2..7985a10dad5 100644 --- a/ace/ReactorEx.i +++ b/ace/ReactorEx.i @@ -28,4 +28,28 @@ ACE_ReactorEx::handle_events (ACE_Time_Value &how_long, wait_all_callback, alertable); } +ACE_INLINE ACE_HANDLE * +ACE_ReactorEx::handles (void) const +{ + return this->handles_; +} + +ACE_INLINE size_t +ACE_ReactorEx_Handler_Repository::max_handlep1 (void) +{ + return this->max_handlep1_; +} + +ACE_INLINE ACE_Event_Handler * +ACE_ReactorEx_Handler_Repository::find (size_t index) +{ + if (this->handle_in_range (index)) + return this->event_handlers_[i]; + else + { + errno = ENOENT; + return 0; + } +} + #endif /* ACE_WIN32 */ |