summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.inl
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2020-08-19 17:00:34 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2020-08-19 17:00:34 -0500
commit3932af0ee97a2c713fb6e0bbea6c3c317fe7e19f (patch)
tree44dea57df86fed20b0c913387ce5b44556d01d60 /ACE/ace/OS_NS_stdlib.inl
parentab97ecf8087463cf4c4494b4564811968e55edf3 (diff)
downloadATCD-3932af0ee97a2c713fb6e0bbea6c3c317fe7e19f.tar.gz
Create ACE_GCC_NO_RETURN, Add to ACE_OS::_exit
To fix fallthrough warning in ACE.cpp. Also added to ACE_OS::abort.
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.inl')
-rw-r--r--ACE/ace/OS_NS_stdlib.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/OS_NS_stdlib.inl b/ACE/ace/OS_NS_stdlib.inl
index 26fa3b0ab93..5dd70f859bb 100644
--- a/ACE/ace/OS_NS_stdlib.inl
+++ b/ACE/ace/OS_NS_stdlib.inl
@@ -28,9 +28,9 @@ ACE_OS::_exit (int status)
#elif defined (ACE_HAS_WINCE)
::TerminateProcess (::GetCurrentProcess (), status);
#elif defined (ACE_MQX)
- _mqx_exit (status);
+ _mqx_exit (status);
#elif !defined (ACE_LACKS__EXIT)
- ::_exit (status);
+ ::_exit (status);
#else
ACE_UNUSED_ARG (status);