diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-02 02:31:08 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-02 02:31:08 +0000 |
commit | 09593654ece6c713b2690f7dd5cc0cc42f9ff1bf (patch) | |
tree | d3c213e139b90e270be9a81875818cfa5a701ed4 /ace/Message_Queue.i | |
parent | 12d1056218c5f7f7ed7664da05d9ea4faaaf5b86 (diff) | |
download | ATCD-09593654ece6c713b2690f7dd5cc0cc42f9ff1bf.tar.gz |
hello
Diffstat (limited to 'ace/Message_Queue.i')
-rw-r--r-- | ace/Message_Queue.i | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ace/Message_Queue.i b/ace/Message_Queue.i index 7661fb826c7..73bdb402b8f 100644 --- a/ace/Message_Queue.i +++ b/ace/Message_Queue.i @@ -3,6 +3,22 @@ // Message_Queue.i +template <ACE_SYNCH_1> ACE_INLINE ACE_Notification_Strategy * +ACE_Message_Queue<ACE_SYNCH_2>::notification_strategy (void) +{ + ACE_TRACE ("ACE_Message_Queue<ACE_SYNCH_2>::notification_strategy"); + + return this->notification_strategy_; +} + +template <ACE_SYNCH_1> ACE_INLINE void +ACE_Message_Queue<ACE_SYNCH_2>::notification_strategy (ACE_Notification_Strategy *s) +{ + ACE_TRACE ("ACE_Message_Queue<ACE_SYNCH_2>::notification_strategy"); + + this->notification_strategy_ = s; +} + // Check if queue is empty (does not hold locks). template <ACE_SYNCH_1> ACE_INLINE int |