summaryrefslogtreecommitdiff
path: root/ACE/ace/ACE.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-06-29 19:35:48 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-06-29 19:35:48 +0200
commitc61e51e5d135a2950fba52e7fc55983f2b46ef28 (patch)
treeecba041b80ad23621cba95cf96a272e4b51f92bf /ACE/ace/ACE.h
parentfe244776c888db6c91c7fe56e5bc25c7603ab780 (diff)
downloadATCD-c61e51e5d135a2950fba52e7fc55983f2b46ef28.tar.gz
Changed ready flags of ACE::handle_ready from int to bool
* ACE/ace/ACE.cpp: * ACE/ace/ACE.h: * ACE/ace/ACE.inl: * ACE/ace/Cached_Connect_Strategy_T.cpp: * ACE/ace/SSL/SSL_SOCK_Stream.inl: * ACE/tests/SOCK_Test.cpp:
Diffstat (limited to 'ACE/ace/ACE.h')
-rw-r--r--ACE/ace/ACE.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ACE/ace/ACE.h b/ACE/ace/ACE.h
index 71136301974..d10dc6710d1 100644
--- a/ACE/ace/ACE.h
+++ b/ACE/ace/ACE.h
@@ -726,9 +726,9 @@ namespace ACE
/// @retval 1 the handle is ready
extern ACE_Export int handle_ready (ACE_HANDLE handle,
const ACE_Time_Value *timeout,
- int read_ready,
- int write_ready,
- int exception_ready);
+ bool read_ready,
+ bool write_ready,
+ bool exception_ready);
/// Wait for @a timeout before proceeding to a @c recv operation.
/// @a val keeps track of whether we're in non-blocking mode or
@@ -877,7 +877,6 @@ namespace ACE
int iovcnt,
const ACE_Time_Value *timeout,
size_t *bytes_transferred);
-
}
// Close versioned namespace, if enabled by the user.