crst.cpp
资源名称:shell.rar [点击查看]
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:1k
源码类别:
系统编程
开发平台:
Visual C++
- #include "proj.h"
- #include "dbutil.h"
- ///////
- // Critical section helper stuff
- //
- #ifdef DEBUG
- UINT g_CriticalSectionCount = 0;
- DWORD g_CriticalSectionOwner = 0;
- #ifdef STACKBACKTRACE
- DBstkback g_CriticalSectionLastCall[4] = { 0 };
- #endif
- void Dll_EnterCriticalSection(CRITICAL_SECTION * pcsDll)
- {
- #ifdef STACKBACKTRACE
- int var0; // *must* be 1st on frame
- #endif
- EnterCriticalSection(pcsDll);
- if (g_CriticalSectionCount++ == 0)
- {
- g_CriticalSectionOwner = GetCurrentThreadId();
- #ifdef STACKBACKTRACE
- int fp = (int) (1 + (int *)&var0);
- DBGetStackBack(&fp, g_CriticalSectionLastCall, ARRAYSIZE(g_CriticalSectionLastCall));
- #endif
- }
- }
- void Dll_LeaveCriticalSection(CRITICAL_SECTION * pcsDll)
- {
- if (--g_CriticalSectionCount == 0)
- g_CriticalSectionOwner = 0;
- LeaveCriticalSection(pcsDll);
- }
- #endif
English
