Changeset 30614 in vbox for trunk/src/VBox/HostServices/GuestControl
- Timestamp:
- Jul 5, 2010 12:57:34 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63341
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r30013 r30614 718 718 switch (eFunction) 719 719 { 720 /* The guest asks the host for the next messsage to process. */ 720 /* 721 * The guest asks the host for the next messsage to process. 722 */ 721 723 case GUEST_GET_HOST_MSG: 722 724 LogFlowFunc(("GUEST_GET_HOST_MSG\n")); … … 724 726 break; 725 727 728 /* 729 * The guest wants to shut down and asks us (this service) to cancel 730 * all blocking pending waits (VINF_HGCM_ASYNC_EXECUTE) so that the 731 * guest can gracefully shut down. 732 */ 726 733 case GUEST_CANCEL_PENDING_WAITS: 727 734 LogFlowFunc(("GUEST_CANCEL_PENDING_WAITS\n")); … … 729 736 break; 730 737 731 /* The guest notifies the host that some output at stdout/stderr is available. */ 738 /* 739 * The guest notifies the host that some output at stdout/stderr is available. 740 */ 732 741 case GUEST_EXEC_SEND_OUTPUT: 733 742 LogFlowFunc(("GUEST_EXEC_SEND_OUTPUT\n")); … … 735 744 break; 736 745 737 /* The guest notifies the host of the current client status. */ 746 /* 747 * The guest notifies the host of the current client status. 748 */ 738 749 case GUEST_EXEC_SEND_STATUS: 739 750 LogFlowFunc(("SEND_STATUS\n"));
Note:
See TracChangeset
for help on using the changeset viewer.