Changeset 14404 in vbox
- Timestamp:
- Nov 20, 2008 12:20:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PGMR0DynMap.cpp
r14378 r14404 165 165 VMMR0DECL(int) PGMR0DynMapInit(void) 166 166 { 167 #ifndef DEBUG_bird 168 return VINF_SUCCESS; 169 #else 167 170 Assert(!g_pPGMR0DynMap); 168 171 … … 211 214 RTMemFree(pThis); 212 215 return rc; 216 #endif 213 217 } 214 218 … … 219 223 VMMR0DECL(void) PGMR0DynMapTerm(void) 220 224 { 225 #ifdef DEBUG_bird 221 226 /* 222 227 * Destroy the cache. … … 247 252 RTMemFree(pThis); 248 253 } 254 #endif 249 255 } 250 256 … … 258 264 VMMR0DECL(int) PGMR0DynMapInitVM(PVM pVM) 259 265 { 266 #ifndef DEBUG_bird 267 return VINF_SUCCESS; 268 #else 260 269 /* 261 270 * Initialize the auto sets. … … 301 310 302 311 return rc; 312 #endif 303 313 } 304 314 … … 311 321 VMMR0DECL(void) PGMR0DynMapTermVM(PVM pVM) 312 322 { 323 #ifdef DEBUG_bird 313 324 /* 314 325 * Return immediately if we're not using the cache. … … 376 387 377 388 RTSemFastMutexRelease(pThis->hInitLock); 389 #endif 378 390 } 379 391
Note:
See TracChangeset
for help on using the changeset viewer.