summaryrefslogtreecommitdiff
path: root/ACE/ace/Handle_Set.inl
diff options
context:
space:
mode:
authormitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2012-08-08 22:18:09 +0000
committermitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2012-08-08 22:18:09 +0000
commit9e2e5f30a6814f0ae79723141837ce4c006d0a8a (patch)
tree55072664b9e6000b90d580998e63c74a2bd99a2b /ACE/ace/Handle_Set.inl
parent94bbde6132926d65bedb83b6788d30a33e90a8ec (diff)
downloadATCD-9e2e5f30a6814f0ae79723141837ce4c006d0a8a.tar.gz
ChangeLogTag: Wed Aug 8 22:13:55 UTC 2012 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'ACE/ace/Handle_Set.inl')
-rw-r--r--ACE/ace/Handle_Set.inl2
1 files changed, 2 insertions, 0 deletions
diff --git a/ACE/ace/Handle_Set.inl b/ACE/ace/Handle_Set.inl
index 660c5abd18c..7d453669bff 100644
--- a/ACE/ace/Handle_Set.inl
+++ b/ACE/ace/Handle_Set.inl
@@ -75,6 +75,8 @@ ACE_Handle_Set::is_set (ACE_HANDLE handle) const
#elif defined (ACE_HAS_NONCONST_FD_ISSET)
return FD_ISSET (handle,
const_cast<fd_set*> (&this->mask_));
+#elif defined (ACE_VXWORKS) && ACE_VXWORKS >= 0x690
+ return static_cast<int> (FD_ISSET (handle, &this->mask_));
#else
return FD_ISSET (handle,
&this->mask_);