mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[KERNEL32] Add debug info to statically initialized critical section
This commit is contained in:
parent
1b6d8523cc
commit
dc046edb68
1 changed files with 11 additions and 0 deletions
|
@ -260,7 +260,18 @@ static struct registry_value
|
|||
{ LOCALE_ITIMEMARKPOSN, iTimePrefixW }
|
||||
};
|
||||
|
||||
#ifdef __REACTOS__
|
||||
static RTL_CRITICAL_SECTION cache_section;
|
||||
static RTL_CRITICAL_SECTION_DEBUG critsect_debug =
|
||||
{
|
||||
0, 0, &cache_section,
|
||||
{ &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
|
||||
0, 0, { (DWORD_PTR)(__FILE__ ": locale_section") }
|
||||
};
|
||||
static RTL_CRITICAL_SECTION cache_section = { &critsect_debug, -1, 0, 0, 0, 0 };
|
||||
#else
|
||||
static RTL_CRITICAL_SECTION cache_section = { NULL, -1, 0, 0, 0, 0 };
|
||||
#endif
|
||||
|
||||
#ifndef __REACTOS__
|
||||
/* Copy Ascii string to Unicode without using codepages */
|
||||
|
|
Loading…
Reference in a new issue