Using new API for MessageQueue.
This commit is contained in:
parent
638d26569f
commit
04854b292c
@ -661,7 +661,7 @@ void drive_register_drive_path(PDEVICE_SERVICE_ENTRY_POINTS pEntryPoints, char*
|
|||||||
drive->files = ListDictionary_New(TRUE);
|
drive->files = ListDictionary_New(TRUE);
|
||||||
ListDictionary_Object(drive->files)->fnObjectFree = (OBJECT_FREE_FN) drive_file_free;
|
ListDictionary_Object(drive->files)->fnObjectFree = (OBJECT_FREE_FN) drive_file_free;
|
||||||
|
|
||||||
drive->IrpQueue = MessageQueue_New();
|
drive->IrpQueue = MessageQueue_New(NULL);
|
||||||
drive->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) drive_thread_func, drive, CREATE_SUSPENDED, NULL);
|
drive->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) drive_thread_func, drive, CREATE_SUSPENDED, NULL);
|
||||||
|
|
||||||
pEntryPoints->RegisterDevice(pEntryPoints->devman, (DEVICE*) drive);
|
pEntryPoints->RegisterDevice(pEntryPoints->devman, (DEVICE*) drive);
|
||||||
|
Loading…
Reference in New Issue
Block a user