summaryrefslogtreecommitdiff
path: root/ace/OS_NS_sys_msg.inl
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-06-23 18:38:54 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-06-23 18:38:54 +0000
commit49177adceaaae6ceb0069c9d690c17f1245fb02e (patch)
tree471b18222840e42849a2047d86f6d993652d0521 /ace/OS_NS_sys_msg.inl
parent155848b4e1515ef0f55b5d9f8f1c5af762cf8893 (diff)
downloadATCD-49177adceaaae6ceb0069c9d690c17f1245fb02e.tar.gz
ChangeLogTag: Wed Jun 23 11:25:23 2004 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'ace/OS_NS_sys_msg.inl')
-rw-r--r--ace/OS_NS_sys_msg.inl17
1 files changed, 4 insertions, 13 deletions
diff --git a/ace/OS_NS_sys_msg.inl b/ace/OS_NS_sys_msg.inl
index 8368a4494b1..364eb57209e 100644
--- a/ace/OS_NS_sys_msg.inl
+++ b/ace/OS_NS_sys_msg.inl
@@ -38,13 +38,8 @@ ACE_OS::msgrcv (int int_id, void *buf, size_t len,
{
ACE_OS_TRACE ("ACE_OS::msgrcv");
#if defined (ACE_HAS_SYSV_IPC)
-# if defined (ACE_LACKS_POSIX_PROTOTYPES) || defined (ACE_LACKS_SOME_POSIX_PROTOTYPES)
- ACE_OSCALL_RETURN (::msgrcv (int_id, (msgbuf *) buf, len, type, flags),
- int, -1);
-# else
ACE_OSCALL_RETURN (::msgrcv (int_id, buf, len, type, flags),
int, -1);
-# endif /* ACE_LACKS_POSIX_PROTOTYPES */
#else
ACE_UNUSED_ARG (int_id);
ACE_UNUSED_ARG (buf);
@@ -62,15 +57,11 @@ ACE_OS::msgsnd (int int_id, const void *buf, size_t len, int flags)
ACE_OS_TRACE ("ACE_OS::msgsnd");
#if defined (ACE_HAS_SYSV_IPC)
# if defined (ACE_HAS_NONCONST_MSGSND)
- ACE_OSCALL_RETURN (::msgsnd (int_id, (void *) buf, len, flags), int, -1);
-# elif defined (ACE_LACKS_POSIX_PROTOTYPES) || defined (ACE_LACKS_SOME_POSIX_PROTOTYPES)
- ACE_OSCALL_RETURN (::msgsnd (int_id, (msgbuf *) buf, len, flags), int, -1);
-# else
ACE_OSCALL_RETURN (::msgsnd (int_id,
- const_cast<void *> (buf), len, flags),
- int,
- -1);
-# endif /* ACE_LACKS_POSIX_PROTOTYPES || ACE_HAS_NONCONST_MSGSND */
+ const_cast<void *> (buf), len, flags), int, -1);
+# else
+ ACE_OSCALL_RETURN (::msgsnd (int_id, buf, len, flags), int, -1);
+# endif /* ACE_HAS_NONCONST_MSGSND */
#else
ACE_UNUSED_ARG (int_id);
ACE_UNUSED_ARG (buf);