Changeset 39957 in vbox for trunk/src/VBox/Main
- Timestamp:
- Feb 2, 2012 2:53:43 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r39843 r39957 731 731 switch (pData->u32Status) 732 732 { 733 /* Interprete u32Flags as the guest process' exit code. */733 /* Just reach through flags. */ 734 734 case PROC_STS_TES: 735 735 case PROC_STS_TOK: 736 736 vrc = processSetStatus(pData->u32PID, 737 737 (ExecuteProcessStatus_T)pData->u32Status, 738 pData->u32Flags /* Exit code. */, 0 /* Flags. */);738 0 /* Exit code. */, pData->u32Flags); 739 739 break; 740 /* Just reach through flags. */740 /* Interprete u32Flags as the guest process' exit code. */ 741 741 default: 742 742 vrc = processSetStatus(pData->u32PID, 743 743 (ExecuteProcessStatus_T)pData->u32Status, 744 0 /* Exit code. */, pData->u32Flags); 744 pData->u32Flags /* Exit code. */, 0 /* Flags. */); 745 745 746 break; 746 747 }
Note:
See TracChangeset
for help on using the changeset viewer.