Changeset 62890 in vbox for trunk/src/VBox/Devices/GIMDev
- Timestamp:
- Aug 2, 2016 11:51:30 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109490
- Location:
- trunk/src/VBox/Devices/GIMDev
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/GIMDev/GIMDev.cpp
r62515 r62890 84 84 85 85 86 static DECLCALLBACK(int) gimDevR3DbgRecvThread(RTTHREAD ThreadSelf, void *pvUser) 87 { 86 static DECLCALLBACK(int) gimDevR3DbgRecvThread(RTTHREAD hThreadSelf, void *pvUser) 87 { 88 RT_NOREF1(hThreadSelf); 89 88 90 /* 89 91 * Validate. … … 176 178 static DECLCALLBACK(int) gimdevR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg) 177 179 { 180 RT_NOREF2(iInstance, pCfg); 178 181 Assert(iInstance == 0); 179 182 PGIMDEV pThis = PDMINS_2_DATA(pDevIns, PGIMDEV);
Note:
See TracChangeset
for help on using the changeset viewer.