Changeset 71263 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 7, 2018 5:43:44 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestProcessImpl.h
r70388 r71263 171 171 172 172 /** 173 * Guest process tool flags.174 */ 175 /** No flags specified; wait until process terminates.173 * Guest process tool wait flags. 174 */ 175 /** No wait flags specified; wait until process terminates. 176 176 * The maximum waiting time is set in the process' startup 177 177 * info. */ 178 #define GUESTPROCESSTOOL_ FLAG_NONE 0178 #define GUESTPROCESSTOOL_WAIT_FLAG_NONE 0 179 179 /** Wait until next stream block from stdout has been 180 180 * read in completely, then return. 181 181 */ 182 #define GUESTPROCESSTOOL_ FLAG_STDOUT_BLOCK RT_BIT(0)182 #define GUESTPROCESSTOOL_WAIT_FLAG_STDOUT_BLOCK RT_BIT(0) 183 183 184 184 /**
Note:
See TracChangeset
for help on using the changeset viewer.