Changeset 58104 in vbox for trunk/src/libs/xpcom18a4/xpcom/ds
- Timestamp:
- Oct 7, 2015 4:26:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/ds/nsTimelineService.cpp
r1 r58104 371 371 va_start(args, text); 372 372 NS_TimelineMarkV(text, args); 373 va_end(args); 373 374 374 375 return NS_OK; … … 378 379 { 379 380 va_list args; 381 382 PR_CallOnce(&initonce, TimelineInit); 383 384 if (gTimelineDisabled) 385 return NS_ERROR_NOT_AVAILABLE; 386 387 TimelineThreadData *thread = GetThisThreadData(); 388 389 if (thread->disabled) 390 return NS_ERROR_NOT_AVAILABLE; 391 380 392 va_start(args, text); 381 382 PR_CallOnce(&initonce, TimelineInit);383 384 if (gTimelineDisabled)385 return NS_ERROR_NOT_AVAILABLE;386 387 TimelineThreadData *thread = GetThisThreadData();388 389 if (thread->disabled)390 return NS_ERROR_NOT_AVAILABLE;391 392 393 NS_TimelineMarkV(text, args); 394 va_end(args); 393 395 394 396 return NS_OK;
Note:
See TracChangeset
for help on using the changeset viewer.