ntdll: Use RTL_CRITICAL_SECTION not CRITICAL_SECTION.

This commit is contained in:
Mike McCormack 2006-08-23 16:12:32 +09:00 committed by Alexandre Julliard
parent 15e1e4d824
commit 2dca7aa2e2
1 changed files with 3 additions and 3 deletions

View File

@ -45,14 +45,14 @@ static LONG num_busy_workers;
static struct list work_item_list = LIST_INIT(work_item_list); static struct list work_item_list = LIST_INIT(work_item_list);
static HANDLE work_item_event; static HANDLE work_item_event;
static CRITICAL_SECTION threadpool_cs; static RTL_CRITICAL_SECTION threadpool_cs;
static CRITICAL_SECTION_DEBUG critsect_debug = static RTL_CRITICAL_SECTION_DEBUG critsect_debug =
{ {
0, 0, &threadpool_cs, 0, 0, &threadpool_cs,
{ &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList }, { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
0, 0, { (DWORD_PTR)(__FILE__ ": threadpool_cs") } 0, 0, { (DWORD_PTR)(__FILE__ ": threadpool_cs") }
}; };
static CRITICAL_SECTION threadpool_cs = { &critsect_debug, -1, 0, 0, 0, 0 }; static RTL_CRITICAL_SECTION threadpool_cs = { &critsect_debug, -1, 0, 0, 0, 0 };
struct work_item struct work_item
{ {