- Timestamp:
- Jul 1, 2009 4:48:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r20859 r21135 575 575 */ 576 576 rc = rtlogLock(pLogger); 577 Assert RCReturn(rc, rc);577 AssertMsgReturn(RT_SUCCESS(rc) || rc == VERR_PREEMPT_DISABLED, ("%Rrc\n", rc), rc); 578 578 579 579 pLogger->fFlags |= RTLOGFLAGS_DISABLED; … … 585 585 * Flush it. 586 586 */ 587 RTLogFlush(pLogger);587 rtlogFlush(pLogger); 588 588 589 589 /*
Note:
See TracChangeset
for help on using the changeset viewer.