summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stropts.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/OS_NS_stropts.inl')
-rw-r--r--ACE/ace/OS_NS_stropts.inl3
1 files changed, 3 insertions, 0 deletions
diff --git a/ACE/ace/OS_NS_stropts.inl b/ACE/ace/OS_NS_stropts.inl
index 919ac531c0e..6f433a441ce 100644
--- a/ACE/ace/OS_NS_stropts.inl
+++ b/ACE/ace/OS_NS_stropts.inl
@@ -123,6 +123,9 @@ ACE_OS::ioctl (ACE_HANDLE handle,
#elif defined (ACE_HAS_IOCTL_INT_3_PARAM)
ACE_OSCALL_RETURN (::ioctl (handle, cmd, reinterpret_cast<int> (val)),
int, -1);
+#elif defined (ACE_MQX)
+ // TBD: See if there is a way to provide this functionality
+ ACE_NOTSUP_RETURN (0);
#else
ACE_OSCALL_RETURN (::ioctl (handle, cmd, val), int, -1);
#endif /* ACE_WIN32 */