Changeset 67798 in vbox
- Timestamp:
- Jul 5, 2017 2:06:40 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116720
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r63456 r67798 287 287 /** IOCTL to VBoxGuest to interrupt (cancel) any pending WAITEVENTs and return. 288 288 * Handled inside the guest additions and not seen by the host at all. 289 * After calling this, VBOXGUEST_IOCTL_WAITEVENT should no longer be called in 290 * the same session. At the time of writing this is not enforced; at the time 291 * of reading it may be. 289 292 * @see VBOXGUEST_IOCTL_WAITEVENT */ 290 293 #define VBOXGUEST_IOCTL_CANCEL_ALL_WAITEVENTS VBOXGUEST_IOCTL_CODE_(5, 0) -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibEvent.cpp
r62521 r67798 87 87 * 88 88 * Can be used in combination with a termination flag variable for interrupting 89 * event loops. Avoiding race conditions is the responsibility of the caller. 89 * event loops. After calling this, VBOXGUEST_IOCTL_WAITEVENT should no longer 90 * be called in the same session. At the time of writing this is not enforced; 91 * at the time of reading it may be. 90 92 * 91 93 * @returns IPRT status code.
Note:
See TracChangeset
for help on using the changeset viewer.