summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-03-22 15:45:57 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-03-22 15:45:57 +0000
commitf3fb287342f5554115598baee9466080bf8a15d3 (patch)
treec1747d55b1de276ab12ea1a23b091d211b518670 /ACE/ace/OS_NS_stdlib.inl
parenteedda60836f6b1a3788219c12d2ee5a0e3f9e853 (diff)
downloadATCD-f3fb287342f5554115598baee9466080bf8a15d3.tar.gz
Tue Mar 22 15:40:00 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_ifaddrs.h: New wrapper file * ace/OS_NS_stdlib.inl: * ace/config-WinCE.h: Added new define to not check for OS in OS_NS_ file * ace/Sock_Connect.cpp: use new os_ifaddrs.h wrapper * tests/Dirent_Test.cpp: * tests/Test_Output.cpp: Cleanup
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.inl')
-rw-r--r--ACE/ace/OS_NS_stdlib.inl5
1 files changed, 2 insertions, 3 deletions
diff --git a/ACE/ace/OS_NS_stdlib.inl b/ACE/ace/OS_NS_stdlib.inl
index c6f0afc8a55..1dd97e34a71 100644
--- a/ACE/ace/OS_NS_stdlib.inl
+++ b/ACE/ace/OS_NS_stdlib.inl
@@ -35,12 +35,11 @@ ACE_OS::_exit (int status)
ACE_INLINE void
ACE_OS::abort (void)
{
-#if !defined (ACE_HAS_WINCE)
+#if !defined (ACE_LACKS_ABORT)
::abort ();
#else
- // @@ CE doesn't support abort?
exit (1);
-#endif /* !ACE_HAS_WINCE */
+#endif /* !ACE_LACKS_ABORT */
}
ACE_INLINE int