diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-30 03:42:29 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-30 03:42:29 +0000 |
commit | c65c4a84e6ce903264c290b5bd98bace3bfe3747 (patch) | |
tree | d8767b38aa2808e2b681f08eeb1a7acff732fed5 /ace/Select_Reactor.i | |
parent | c6489d434dfacc32dbf52d9f696419de36c447f0 (diff) | |
download | ATCD-c65c4a84e6ce903264c290b5bd98bace3bfe3747.tar.gz |
Added a new method reset_new_handle so we can determine whether the implementation of reactor requires us to decouple the event a handle inherit from accept/connect.
Diffstat (limited to 'ace/Select_Reactor.i')
-rw-r--r-- | ace/Select_Reactor.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Select_Reactor.i b/ace/Select_Reactor.i index 83dd4fc5551..f87a09c32b9 100644 --- a/ace/Select_Reactor.i +++ b/ace/Select_Reactor.i @@ -107,6 +107,12 @@ ACE_Select_Reactor::remove_handler (int signum, return this->signal_handler_->remove_handler (signum, new_disp, old_disp, sigkey); } +ACE_INLINE int +ACE_Select_Reactor::reset_new_handle (void) +{ + return 0; // Select Reactor doesn't need to reset new handles. +} + // = The remaining methods in this file must be called with locks // held. Note the queue handles its own locking. |