本文整理汇总了C++中CCritSect::IsLocked方法的典型用法代码示例。如果您正苦于以下问题:C++ CCritSect::IsLocked方法的具体用法?C++ CCritSect::IsLocked怎么用?C++ CCritSect::IsLocked使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCritSect
的用法示例。
在下文中一共展示了CCritSect::IsLocked方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RomOpen
EXPORT void CALL RomOpen(void)
{
#ifdef DEBUGON
// _break();
#endif
InitConfiguration();
if( g_CritialSection.IsLocked() )
{
g_CritialSection.Unlock();
TRACE0("g_CritialSection is locked when game is starting, unlock it now.");
}
status.bDisableFPS=false;
#if defined(__GX__)
# ifdef USE_EXPANSION
g_dwRamSize = 0x800000;
# else
g_dwRamSize = 0x400000;
# endif
#else //__GX__
g_dwRamSize = 0x800000;
#endif //!__GX__
#ifdef _DEBUG
if( debuggerPause )
{
debuggerPause = FALSE;
usleep(100 * 1000);
}
#endif
#ifdef USING_THREAD
uint32 threadID;
for(int i = 0; i < 5; i++)
{
threadMsg[i] = CreateEvent( NULL, FALSE, FALSE, NULL );
if (threadMsg[i] == NULL)
{
ErrorMsg( "Error creating thread message events");
return;
}
}
threadFinished = CreateEvent( NULL, FALSE, FALSE, NULL );
if (threadFinished == NULL)
{
ErrorMsg( "Error creating video thread finished event");
return;
}
videoThread = CreateThread( NULL, 4096, VideoThreadProc, NULL, NULL, &threadID );
#else
StartVideo();
#endif
#ifdef __GX__
VIDEO_SetPreRetraceCallback(VI_GX_PreRetraceCallback);
#endif // __GX__
}