Changeset 43879 in vbox for trunk/src/VBox/Runtime/common/dbg/dbgmod.cpp
- Timestamp:
- Nov 15, 2012 2:49:23 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmod.cpp
r41493 r43879 254 254 * 255 255 * @returns IPRT status code. 256 * @param pvUser1 NULL. 257 * @param pvUser2 NULL. 258 */ 259 static DECLCALLBACK(int) rtDbgModInitOnce(void *pvUser1, void *pvUser2) 260 { 261 NOREF(pvUser1); NOREF(pvUser2); 256 * @param pvUser NULL. 257 */ 258 static DECLCALLBACK(int) rtDbgModInitOnce(void *pvUser) 259 { 260 NOREF(pvUser); 262 261 263 262 /* … … 299 298 DECLINLINE(int) rtDbgModLazyInit(void) 300 299 { 301 return RTOnce(&g_rtDbgModOnce, rtDbgModInitOnce, NULL , NULL);300 return RTOnce(&g_rtDbgModOnce, rtDbgModInitOnce, NULL); 302 301 } 303 302
Note:
See TracChangeset
for help on using the changeset viewer.