Changeset 8776 in vbox for trunk/src/VBox
- Timestamp:
- May 12, 2008 9:54:31 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.cpp
r8155 r8776 361 361 while ((pHeader->fu32Flags & VBOX_HGCM_REQ_DONE) == 0) 362 362 { 363 /* Specifying UserMode so killing the user process will abort the wait. */ 363 /* Specifying UserMode so killing the user process will abort the wait. 364 * @todo Since VbglGRCancel is not yet implemented, the wait itself must 365 * be not interruptible. The wait can be interrupted only when the 366 * calling process is being killed. 367 * When alertable is TRUE, the wait sometimes ends with STATUS_USER_APC. 368 */ 364 369 NTSTATUS rc = KeWaitForSingleObject (&pDevExt->keventNotification, Executive, 365 UserMode, TRUE, pTimeout 370 UserMode, 371 FALSE, /* Not Alertable */ 372 pTimeout 366 373 ); 367 374 dprintf(("VBoxHGCMCallback: Wait returned %d fu32Flags=%x\n", rc, pHeader->fu32Flags));
Note:
See TracChangeset
for help on using the changeset viewer.