Changeset 63563 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Aug 16, 2016 2:04:28 PM (8 years ago)
- Location:
- trunk/src/VBox/Main/src-all
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/DisplayUtils.cpp
r62485 r63563 28 28 LogFlowFunc(("u32Type = %d [%s]\n", u32Type, strStateFilePath.c_str())); 29 29 30 /* @todo cache read data */30 /** @todo cache read data */ 31 31 if (strStateFilePath.isEmpty()) 32 32 { … … 139 139 void freeSavedDisplayScreenshot(uint8_t *pu8Data) 140 140 { 141 /* @todo not necessary when caching is implemented. */141 /** @todo not necessary when caching is implemented. */ 142 142 RTMemFree(pu8Data); 143 143 } … … 149 149 LogFlowFunc(("u32ScreenId = %d [%s]\n", u32ScreenId, strStateFilePath.c_str())); 150 150 151 /* @todo cache read data */151 /** @todo cache read data */ 152 152 if (strStateFilePath.isEmpty()) 153 153 { -
trunk/src/VBox/Main/src-all/EventImpl.cpp
r61774 r63563 210 210 // must drop lock while waiting, because setProcessed() needs synchronization. 211 211 alock.release(); 212 /* @todo:maybe while loop for spurious wakeups? */212 /** @todo maybe while loop for spurious wakeups? */ 213 213 int vrc = ::RTSemEventWait(m->mWaitEvent, aTimeout); 214 214 AssertMsg(RT_SUCCESS(vrc) || vrc == VERR_TIMEOUT || vrc == VERR_INTERRUPTED,
Note:
See TracChangeset
for help on using the changeset viewer.