diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-15 04:12:16 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-15 04:12:16 +0000 |
commit | 16aa27527b9abccbe0c43bb648c7fa21a9729102 (patch) | |
tree | 8d31e03aaf2d6241cb3230c3d8f17c7247fa6c49 /ace/SPIPE_Stream.i | |
parent | faf8e1f2fe08ab2c76090ebb678b5fedfd497754 (diff) | |
download | ATCD-16aa27527b9abccbe0c43bb648c7fa21a9729102.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/SPIPE_Stream.i')
-rw-r--r-- | ace/SPIPE_Stream.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/SPIPE_Stream.i b/ace/SPIPE_Stream.i index 7018068e8d7..0be6a9d3602 100644 --- a/ace/SPIPE_Stream.i +++ b/ace/SPIPE_Stream.i @@ -20,7 +20,7 @@ inline ssize_t ACE_SPIPE_Stream::send_n (const void *buf, size_t n) const { ACE_TRACE ("ACE_SPIPE_Stream::send_n"); - return ACE::send_n (this->get_handle (), buf, n); + return ACE::write_n (this->get_handle (), buf, n); } // Receive exactly N bytes from this socket into BUF. Keep trying @@ -30,7 +30,7 @@ inline ssize_t ACE_SPIPE_Stream::recv_n (void *buf, size_t n) const { ACE_TRACE ("ACE_SPIPE_Stream::recv_n"); - return ACE::recv_n (this->get_handle (), buf, n); + return ACE::read_n (this->get_handle (), buf, n); } inline ssize_t |