mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
Imported MaNGOS revision 6767 from http://mangos.svn.sourceforge.net/svnroot/mangos/trunk/
This commit is contained in:
parent
d767495d5b
commit
800ee76535
3322 changed files with 903437 additions and 0 deletions
51
dep/ACE_wrappers/ace/Test_and_Set.cpp
Normal file
51
dep/ACE_wrappers/ace/Test_and_Set.cpp
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
// $Id: Test_and_Set.cpp 80826 2008-03-04 14:51:23Z wotte $
|
||||
|
||||
#ifndef ACE_TEST_AND_SET_CPP
|
||||
#define ACE_TEST_AND_SET_CPP
|
||||
|
||||
#include "ace/Test_and_Set.h"
|
||||
#include "ace/Guard_T.h"
|
||||
|
||||
#if !defined (ACE_LACKS_PRAGMA_ONCE)
|
||||
# pragma once
|
||||
#endif /* ACE_LACKS_PRAGMA_ONCE */
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
template <class ACE_LOCK, class TYPE>
|
||||
ACE_Test_and_Set<ACE_LOCK, TYPE>::ACE_Test_and_Set (TYPE initial_value)
|
||||
: is_set_ (initial_value)
|
||||
{
|
||||
}
|
||||
|
||||
// Returns true if we are done, else false.
|
||||
template <class ACE_LOCK, class TYPE> TYPE
|
||||
ACE_Test_and_Set<ACE_LOCK, TYPE>::is_set (void) const
|
||||
{
|
||||
ACE_GUARD_RETURN (ACE_LOCK, ace_mon, (ACE_LOCK &) this->lock_, this->is_set_);
|
||||
return this->is_set_;
|
||||
}
|
||||
|
||||
// Sets the <is_set_> status.
|
||||
template <class ACE_LOCK, class TYPE> TYPE
|
||||
ACE_Test_and_Set<ACE_LOCK, TYPE>::set (TYPE status)
|
||||
{
|
||||
ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, this->is_set_);
|
||||
TYPE o_status = this->is_set_;
|
||||
this->is_set_ = status;
|
||||
return o_status;
|
||||
}
|
||||
|
||||
template <class ACE_LOCK, class TYPE> int
|
||||
ACE_Test_and_Set<ACE_LOCK, TYPE>::handle_signal (int, siginfo_t *, ucontext_t *)
|
||||
{
|
||||
// By setting this to 1, we are "signaling" to anyone calling
|
||||
// <is_set> or or <set> that the "test and set" object is in the
|
||||
// "signaled" state, i.e., it's "available" to be set back to 0.
|
||||
this->set (1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#endif /* ACE_TEST_AND_SET_CPP */
|
||||
Loading…
Add table
Add a link
Reference in a new issue