summaryrefslogtreecommitdiff
path: root/ace/ACE.h
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-22 17:24:56 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-22 17:24:56 +0000
commitbb7672ce62fcc76cc6955cce40ea7dd915a14538 (patch)
tree14a66a6b99cddf4d57432b3901ad877f2388aced /ace/ACE.h
parent90c8b9aeb7737f290111b66cb6dba6011a30f2f6 (diff)
downloadATCD-bb7672ce62fcc76cc6955cce40ea7dd915a14538.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/ACE.h')
-rw-r--r--ace/ACE.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ace/ACE.h b/ace/ACE.h
index de334da7b91..a4c2ab6d8df 100644
--- a/ace/ACE.h
+++ b/ace/ACE.h
@@ -257,6 +257,10 @@ public:
const struct iovec* iov,
int iovcnt,
const ACE_Time_Value *timeout);
+ static ssize_t writev (ACE_HANDLE handle,
+ const struct ACE_IO_Vector *iov,
+ int iovcnt,
+ const ACE_Time_Value *timeout);
// Send <iovcnt> <iovec> structs to <handle> (uses the
// <ACE_OS::writev> call). If <timeout> == 0, the caller will block
// until action is possible, else will wait until the relative time
@@ -268,6 +272,10 @@ public:
struct iovec *iov,
int iovcnt,
const ACE_Time_Value *timeout);
+ static ssize_t readv (ACE_HANDLE handle,
+ struct ACE_IO_Vector *iov,
+ int iovcnt,
+ const ACE_Time_Value *timeout);
// Read <iovcnt> <iovec> structs from <handle> (uses the
// <ACE_OS::readv> call). If <timeout> == 0, the caller will block
// until action is possible, else will wait until the relative time