summaryrefslogtreecommitdiff
path: root/ace/ACE.i
diff options
context:
space:
mode:
authorcdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-16 21:23:53 +0000
committercdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-16 21:23:53 +0000
commit30772484d584ad77092263d4cbae68b95931ab25 (patch)
tree001421cd6d012f17d9159d82cf7ba1ddd7dbc9c2 /ace/ACE.i
parent38552aab998493110534c4e8ff9b13822f2ea9e1 (diff)
downloadATCD-30772484d584ad77092263d4cbae68b95931ab25.tar.gz
pSOS MIPS patches from Jaepil Kim
Diffstat (limited to 'ace/ACE.i')
-rw-r--r--ace/ACE.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/ACE.i b/ace/ACE.i
index 80f0f0b4645..5b006529771 100644
--- a/ace/ACE.i
+++ b/ace/ACE.i
@@ -8,7 +8,7 @@ ACE::send (ACE_HANDLE handle, const void *buf, size_t len)
{
ACE_TRACE ("ACE::send");
-#if defined (ACE_WIN32)
+#if defined (ACE_WIN32) || defined (ACE_PSOS)
return ACE_OS::send (handle, (const char *) buf, len);
#else
return ACE_OS::write (handle, (const char *) buf, len);
@@ -26,7 +26,7 @@ ASYS_INLINE ssize_t
ACE::recv (ACE_HANDLE handle, void *buf, size_t len)
{
ACE_TRACE ("ACE::recv");
-#if defined (ACE_WIN32)
+#if defined (ACE_WIN32) || defined (ACE_PSOS)
return ACE_OS::recv (handle, (char *) buf, len);
#else
return ACE_OS::read (handle, (char *) buf, len);