2010-07-19 11:27:38 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-02-17 14:31:52 +08:00
|
|
|
#if CCX_SUPPORT_MULTITHREAD
|
|
|
|
|
|
|
|
#include "TG3.h"
|
2011-03-09 14:40:05 +08:00
|
|
|
#include "CCThread.h"
|
2010-07-19 11:27:38 +08:00
|
|
|
|
2011-02-17 14:31:52 +08:00
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
2011-03-09 14:40:05 +08:00
|
|
|
class CCLock::Impl
|
2010-07-19 11:27:38 +08:00
|
|
|
{
|
2011-02-17 14:31:52 +08:00
|
|
|
public:
|
|
|
|
Impl()
|
|
|
|
{
|
|
|
|
CriticalSectionInit(m_pLock);
|
|
|
|
}
|
2010-09-11 16:35:06 +08:00
|
|
|
|
2011-02-17 14:31:52 +08:00
|
|
|
~Impl()
|
2010-09-11 16:35:06 +08:00
|
|
|
{
|
2011-02-17 14:31:52 +08:00
|
|
|
CriticalSectionDestroy(m_pLock);
|
|
|
|
|
|
|
|
if (m_pLock)
|
|
|
|
{
|
|
|
|
delete m_pLock;
|
|
|
|
m_pLock = NULL;
|
|
|
|
}
|
2010-09-11 16:35:06 +08:00
|
|
|
}
|
2011-02-17 14:31:52 +08:00
|
|
|
|
|
|
|
SS_LOCK_t *m_pLock;
|
|
|
|
};
|
|
|
|
|
2011-03-09 14:40:05 +08:00
|
|
|
CCLock::CCLock()
|
|
|
|
: m_pImp(new CCLock::Impl)
|
2011-02-17 14:31:52 +08:00
|
|
|
{
|
2010-07-19 11:27:38 +08:00
|
|
|
}
|
|
|
|
|
2011-03-09 14:40:05 +08:00
|
|
|
CCLock::~CCLock()
|
2010-07-19 11:27:38 +08:00
|
|
|
{
|
2011-03-28 11:09:49 +08:00
|
|
|
CC_SAFE_DELETE(m_pImp);
|
2010-07-19 11:27:38 +08:00
|
|
|
}
|
|
|
|
|
2011-03-09 14:40:05 +08:00
|
|
|
void CCLock::lock()
|
2010-07-19 11:27:38 +08:00
|
|
|
{
|
2011-02-17 14:31:52 +08:00
|
|
|
if (m_pImp)
|
|
|
|
{
|
|
|
|
CriticalSectionLock(m_pImp->m_pLock);
|
|
|
|
}
|
2010-08-04 15:46:12 +08:00
|
|
|
}
|
2011-02-17 14:31:52 +08:00
|
|
|
|
2011-03-09 14:40:05 +08:00
|
|
|
void CCLock::unlock()
|
2011-02-17 14:31:52 +08:00
|
|
|
{
|
|
|
|
if (m_pImp)
|
|
|
|
{
|
|
|
|
CriticalSectionUnLock(m_pImp->m_pLock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END;
|
|
|
|
|
|
|
|
#endif // CCX_SUPPORT_MULTITHREAD
|