[KERNEL32] Add debug info to statically initialized critical section

This commit is contained in:
Mark Jansen 2025-03-28 09:21:09 +01:00
parent 1b6d8523cc
commit dc046edb68
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -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 */