summaryrefslogtreecommitdiff
path: root/ACE/ace/Select_Reactor_Base.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-08-21 17:28:41 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-08-21 17:28:41 +0200
commitcf0b9f6d5bf174c7a663300c26f19febbe6aeef8 (patch)
tree93d071f81a91fd7ab68236062a9990d8a73a940a /ACE/ace/Select_Reactor_Base.h
parent59f4874b3b6c23f1080fbf1c40b060d31a0c7557 (diff)
downloadATCD-cf0b9f6d5bf174c7a663300c26f19febbe6aeef8.tar.gz
Changed suppress_notify_renew flag from int to bool
* ACE/ace/Select_Reactor_Base.h: * ACE/ace/Select_Reactor_Base.inl: * ACE/ace/Select_Reactor_T.cpp: * ACE/ace/TP_Reactor.cpp:
Diffstat (limited to 'ACE/ace/Select_Reactor_Base.h')
-rw-r--r--ACE/ace/Select_Reactor_Base.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ACE/ace/Select_Reactor_Base.h b/ACE/ace/Select_Reactor_Base.h
index 1dccc8225ba..58440ea6bf0 100644
--- a/ACE/ace/Select_Reactor_Base.h
+++ b/ACE/ace/Select_Reactor_Base.h
@@ -588,14 +588,13 @@ protected:
/// Controls/access whether the notify handler should renew the
/// Select_Reactor's token or not.
- int supress_notify_renew (void);
- void supress_notify_renew (int sr);
+ bool supress_notify_renew (void);
+ void supress_notify_renew (bool sr);
private:
-
/// Determine whether we should renew Select_Reactor's token after handling
/// the notification message.
- int supress_renew_;
+ bool supress_renew_;
/// Deny access since member-wise won't work...
ACE_Select_Reactor_Impl (const ACE_Select_Reactor_Impl &);