summaryrefslogtreecommitdiff
path: root/ace/FILE_IO.i
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-08-27 17:38:26 +0000
committerSteve Huston <shuston@riverace.com>2002-08-27 17:38:26 +0000
commit7b5a429be6bcb7376736b32d9ef8b632abd3d45e (patch)
tree975bd4989100178940b9f15c0ad737d40b783b54 /ace/FILE_IO.i
parent85e3f3910c6931831afed75e4593f56309a6f610 (diff)
downloadATCD-7b5a429be6bcb7376736b32d9ef8b632abd3d45e.tar.gz
ChangeLogTag:Tue Aug 27 13:28:17 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/FILE_IO.i')
-rw-r--r--ace/FILE_IO.i10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/FILE_IO.i b/ace/FILE_IO.i
index a00d6aef8ba..c987b604413 100644
--- a/ace/FILE_IO.i
+++ b/ace/FILE_IO.i
@@ -4,7 +4,7 @@
// FILE_IO.i
ASYS_INLINE ssize_t
-ACE_FILE_IO::sendv_n (const iovec iov[], size_t n) const
+ACE_FILE_IO::sendv_n (const iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::sendv_n");
return ACE::writev_n (this->get_handle (),
@@ -27,7 +27,7 @@ ACE_FILE_IO::send_n (const ACE_Message_Block *message_block,
// Recv an n byte message from the file.
ASYS_INLINE ssize_t
-ACE_FILE_IO::recvv_n (iovec iov[], size_t n) const
+ACE_FILE_IO::recvv_n (iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::recvv_n");
// @@ Carlos, can you please update this to call the
@@ -40,7 +40,7 @@ ACE_FILE_IO::recvv_n (iovec iov[], size_t n) const
// Send an <iovec> of size <n> to the file.
ASYS_INLINE ssize_t
-ACE_FILE_IO::sendv (const iovec iov[], size_t n) const
+ACE_FILE_IO::sendv (const iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::sendv");
return ACE_OS::writev (this->get_handle (), iov, n);
@@ -81,14 +81,14 @@ ACE_FILE_IO::recv (void *buf, size_t n) const
}
ASYS_INLINE ssize_t
-ACE_FILE_IO::send (const iovec iov[], size_t n) const
+ACE_FILE_IO::send (const iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::send");
return ACE_OS::writev (this->get_handle (), iov, n);
}
ASYS_INLINE ssize_t
-ACE_FILE_IO::recv (iovec iov[], size_t n) const
+ACE_FILE_IO::recv (iovec iov[], int n) const
{
ACE_TRACE ("ACE_FILE_IO::recv");
return ACE_OS::readv (this->get_handle (), iov, n);