Changeset 36219 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Mar 9, 2011 10:57:28 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70433
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp
r36214 r36219 105 105 * gets deleted when the property cache did not have the chance to 106 106 * gracefully clean it up (due to a hard VM reset etc), so set this 107 * guest property using the TRANS IENT and TRANSIENT_RESET flags.107 * guest property using the TRANSRESET flag.. 108 108 */ 109 /** @todo r=bird: TRANSIENT_RESET should imply TRANSIENT. See 110 * MAX_FLAGS_LEN... */ 111 rc = VbglR3GuestPropWrite(u32ClientId, pszName, pszValue, "TRANSIENT,TRANSIENT_RESET"); 109 rc = VbglR3GuestPropWrite(u32ClientId, pszName, pszValue, "TRANSRESET"); 112 110 if (rc == VERR_PARSE_ERROR) 113 111 { 114 /* Host does not support the "TRANS IENT_RESET" flag, so only112 /* Host does not support the "TRANSRESET" flag, so only 115 113 * use the "TRANSIENT" flag -- better than nothing :-). */ 116 114 rc = VbglR3GuestPropWrite(u32ClientId, pszName, pszValue, "TRANSIENT");
Note:
See TracChangeset
for help on using the changeset viewer.