diff options
author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-24 19:43:11 +0000 |
---|---|---|
committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-24 19:43:11 +0000 |
commit | beb509e19150e250bcea808acec968ff37d39bc0 (patch) | |
tree | f3f555254869019012234fb974d0ba63cad105b5 /ace/Message_Queue.cpp | |
parent | ad26acb524aee6036381cf5ef10c3657b0c3c4c2 (diff) | |
download | ATCD-beb509e19150e250bcea808acec968ff37d39bc0.tar.gz |
added message queue factory comments
Diffstat (limited to 'ace/Message_Queue.cpp')
-rw-r--r-- | ace/Message_Queue.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ace/Message_Queue.cpp b/ace/Message_Queue.cpp index 813e96567ee..4ad4e7caf8a 100644 --- a/ace/Message_Queue.cpp +++ b/ace/Message_Queue.cpp @@ -921,6 +921,7 @@ ACE_Message_Queue_Factory<ACE_SYNCH_USE>::create_static_message_queue (size_t hw { return new ACE_Message_Queue<ACE_SYNCH_USE> (hwm, lwm, ns); } + // factory method for a statically prioritized ACE_Message_Queue template <ACE_SYNCH_DECL> ACE_Dynamic_Message_Queue<ACE_SYNCH_USE> * @@ -945,6 +946,7 @@ ACE_Message_Queue_Factory<ACE_SYNCH_USE>::create_deadline_message_queue (size_t return new ACE_Dynamic_Message_Queue<ACE_SYNCH_USE> (*adms, hwm, lwm, ns); } + // factory method for a dynamically prioritized (by time to deadline) ACE_Dynamic_Message_Queue template <ACE_SYNCH_DECL> ACE_Dynamic_Message_Queue<ACE_SYNCH_USE> * @@ -970,6 +972,7 @@ ACE_Message_Queue_Factory<ACE_SYNCH_USE>::create_laxity_message_queue (size_t hw return new ACE_Dynamic_Message_Queue<ACE_SYNCH_USE> (*alms, hwm, lwm, ns); } + // factory method for a dynamically prioritized (by laxity) ACE_Dynamic_Message_Queue #endif /* ACE_MESSAGE_QUEUE_C */ |