Changeset 18196 in vbox
- Timestamp:
- Mar 24, 2009 3:19:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/init.cpp
r18095 r18196 217 217 * (The more time for updates before real use, the better.) 218 218 */ 219 SUPR3Init(NULL); 219 rc = SUPR3Init(NULL); 220 if (RT_FAILURE(rc)) 221 { 222 AssertMsgFailed(("Failed to initializeble the support library, rc=%Rrc!\n", rc)); 223 ASMAtomicWriteBool(&g_fInitializing, false); 224 ASMAtomicDecS32(&g_cUsers); 225 return rc; 226 } 220 227 } 221 228 #endif
Note:
See TracChangeset
for help on using the changeset viewer.