summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.inl')
-rw-r--r--ACE/ace/OS_NS_stdlib.inl2
1 files changed, 2 insertions, 0 deletions
diff --git a/ACE/ace/OS_NS_stdlib.inl b/ACE/ace/OS_NS_stdlib.inl
index cb59874b3cf..26fa3b0ab93 100644
--- a/ACE/ace/OS_NS_stdlib.inl
+++ b/ACE/ace/OS_NS_stdlib.inl
@@ -27,6 +27,8 @@ ACE_OS::_exit (int status)
::exit (status);
#elif defined (ACE_HAS_WINCE)
::TerminateProcess (::GetCurrentProcess (), status);
+#elif defined (ACE_MQX)
+ _mqx_exit (status);
#elif !defined (ACE_LACKS__EXIT)
::_exit (status);
#else