[10874] Update ACE to v5.8.3

(based on zergtmn's repo commit 3a8c259)
(based on zergtmn's repo commit 946c1a8)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
zerg 2010-12-14 17:14:34 +03:00 committed by VladimirMangos
parent c38c876b1d
commit b8d773091a
343 changed files with 3060 additions and 7431 deletions

View file

@ -1,4 +1,4 @@
// $Id: Message_Queue_Vx.cpp 91286 2010-08-05 09:04:31Z johnnyw $
// $Id: Message_Queue_Vx.cpp 91626 2010-09-07 10:59:20Z johnnyw $
#include "ace/Message_Queue_Vx.h"
#include "ace/Log_Msg.h"
@ -328,24 +328,16 @@ ACE_Message_Queue_Vx::dequeue_deadline_i (ACE_Message_Block *& /*dequeued*/)
// Take a look at the first item without removing it.
int
ACE_Message_Queue_Vx::wait_not_full_cond (ACE_Guard<ACE_Null_Mutex> &mon,
ACE_Time_Value *tv)
ACE_Message_Queue_Vx::wait_not_full_cond (ACE_Time_Value *)
{
// Always return here, and let the VxWorks message queue handle blocking.
ACE_UNUSED_ARG (mon);
ACE_UNUSED_ARG (tv);
return 0;
}
int
ACE_Message_Queue_Vx::wait_not_empty_cond (ACE_Guard<ACE_Null_Mutex> &mon,
ACE_Time_Value *tv)
ACE_Message_Queue_Vx::wait_not_empty_cond (ACE_Time_Value *)
{
// Always return here, and let the VxWorks message queue handle blocking.
ACE_UNUSED_ARG (mon);
ACE_UNUSED_ARG (tv);
return 0;
}