summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-10-08 02:45:58 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-10-08 02:45:58 +0000
commit40ff81d94755884d615a43e3a5e046386117f415 (patch)
treee21f11afbfb4cb05a2ead5a21cc21137508ff22e
parentda57f30b3564f92900d73429dc1ab2ecf4331883 (diff)
downloadATCD-40ff81d94755884d615a43e3a5e046386117f415.tar.gz
.
-rw-r--r--ace/Stream.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/Stream.h b/ace/Stream.h
index 0a51044dbe8..e9f4eacc1ad 100644
--- a/ace/Stream.h
+++ b/ace/Stream.h
@@ -104,13 +104,15 @@ public:
// Remove a pipe formed between two Streams.
// = Blocking data transfer operations
- int put (ACE_Message_Block *mb, ACE_Time_Value *timeout);
+ int put (ACE_Message_Block *mb,
+ ACE_Time_Value *timeout = 0);
// Send the message <mb> down the stream, starting at the Module
// below the Stream head. Wait for upto <timeout> amount of time
// for the operation to complete (or block forever if <timeout> ==
// 0).
- int get (ACE_Message_Block *&mb, ACE_Time_Value *timeout);
+ int get (ACE_Message_Block *&mb,
+ ACE_Time_Value *timeout = 0);
// Read the message <mb> that is stored in the the stream head.
// Wait for upto <timeout> amount of time for the operation to
// complete (or block forever if <timeout> == 0).