| commit | 301df6b5cd6dec63a8b88f2cb53f93f67e144adb | [log] [tgz] |
|---|---|---|
| author | Alexandre Julliard <julliard@winehq.org> | Thu Aug 16 18:12:56 2001 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Thu Aug 16 18:12:56 2001 +0000 |
| tree | 54420d9b386c76f5ba68587ba3f81b09267d967c | |
| parent | 06abe790376e2d8d53c12102e3cb9cf8549e1166 [diff] [blame] |
Added names to standard critical sections (suggested by Andreas Mohr).
diff --git a/scheduler/syslevel.c b/scheduler/syslevel.c index 90f8989..4647e19 100644 --- a/scheduler/syslevel.c +++ b/scheduler/syslevel.c
@@ -14,7 +14,7 @@ DEFAULT_DEBUG_CHANNEL(win32); -static SYSLEVEL Win16Mutex = { CRITICAL_SECTION_INIT, 1 }; +static SYSLEVEL Win16Mutex = { CRITICAL_SECTION_INIT("Win16Mutex"), 1 }; /* Global variable to save current TEB while in 16-bit code */ WORD SYSLEVEL_Win16CurrentTeb = 0;