diff options
author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-24 19:34:14 +0000 |
---|---|---|
committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-24 19:34:14 +0000 |
commit | f46719eb9f64e4d0063216a6e14242f9be6bf778 (patch) | |
tree | 9c84392fd4a53a6183b7ff56d3d14f3c5fd48717 /ace/Message_Block.h | |
parent | 63dede32e51318a2ca4695d75d0f0739c652e6c8 (diff) | |
download | ATCD-f46719eb9f64e4d0063216a6e14242f9be6bf778.tar.gz |
fixed enqueue_tail bug in dynamic message queue
Diffstat (limited to 'ace/Message_Block.h')
-rw-r--r-- | ace/Message_Block.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Message_Block.h b/ace/Message_Block.h index 26fd9dbaaa7..de532e71d17 100644 --- a/ace/Message_Block.h +++ b/ace/Message_Block.h @@ -116,7 +116,7 @@ public: ACE_Lock *locking_strategy = 0, u_long priority = 0, const ACE_Time_Value & execution_time = ACE_Time_Value::zero, - const ACE_Time_Value & deadline_time = ACE_Time_Value::zero); + const ACE_Time_Value & deadline_time = ACE_Time_Value::max); // Create an initialized message of type <type> containing <size> // bytes. The <cont> argument initializes the continuation field in // the <Message_Block>. If <data> == 0 then we create and own the @@ -143,7 +143,7 @@ public: ACE_Lock *locking_strategy = 0, u_long priority = 0, const ACE_Time_Value & execution_time = ACE_Time_Value::zero, - const ACE_Time_Value & deadline_time = ACE_Time_Value::zero); + const ACE_Time_Value & deadline_time = ACE_Time_Value::max); // Create an initialized message of type <type> containing <size> // bytes. The <cont> argument initializes the continuation field in // the <Message_Block>. If <data> == 0 then we create and own the |