[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: POSIX_CB_Proactor.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $
// $Id: POSIX_CB_Proactor.cpp 91683 2010-09-09 09:07:49Z johnnyw $
#include "ace/POSIX_CB_Proactor.h"
@ -83,10 +83,6 @@ ACE_POSIX_CB_Proactor::allocate_aio_slot (ACE_POSIX_Asynch_Result *result)
// @@ TODO: This gets the completion method back to this proactor to
// find the completed aiocb. It would be so much better to not only get
// the proactor, but the aiocb as well.
#if defined(__sgi)
result->aio_sigevent.sigev_notify = SIGEV_CALLBACK;
result->aio_sigevent.sigev_func = aio_completion_func ;
#else
result->aio_sigevent.sigev_notify = SIGEV_THREAD;
# if defined (ACE_HAS_SIG_C_FUNC)
result->aio_sigevent.sigev_notify_function =
@ -95,7 +91,6 @@ ACE_POSIX_CB_Proactor::allocate_aio_slot (ACE_POSIX_Asynch_Result *result)
result->aio_sigevent.sigev_notify_function = aio_completion_func;
# endif /* ACE_HAS_SIG_C_FUNC */
result->aio_sigevent.sigev_notify_attributes = 0;
#endif /* __sgi */
result->aio_sigevent.sigev_value.sival_ptr = this ;