From e427d67347dce71a3e59470e157709802741a119 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 20 Aug 2019 12:19:05 +0200 Subject: [PATCH] Don't bail out if unimportant variables are not available. --- client/TracySysTrace.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/TracySysTrace.cpp b/client/TracySysTrace.cpp index 7cd745e9..2d075d04 100644 --- a/client/TracySysTrace.cpp +++ b/client/TracySysTrace.cpp @@ -379,9 +379,9 @@ bool SysTraceStart() { if( !TraceWrite( TracingOn, sizeof( TracingOn ), "0", 2 ) ) return false; if( !TraceWrite( CurrentTracer, sizeof( CurrentTracer ), "nop", 4 ) ) return false; - if( !TraceWrite( TraceOptions, sizeof( TraceOptions ), "norecord-cmd", 13 ) ) return false; - if( !TraceWrite( TraceOptions, sizeof( TraceOptions ), "norecord-tgid", 14 ) ) return false; - if( !TraceWrite( TraceOptions, sizeof( TraceOptions ), "noirq-info", 11 ) ) return false; + TraceWrite( TraceOptions, sizeof( TraceOptions ), "norecord-cmd", 13 ); + TraceWrite( TraceOptions, sizeof( TraceOptions ), "norecord-tgid", 14 ); + TraceWrite( TraceOptions, sizeof( TraceOptions ), "noirq-info", 11 ); #if defined TRACY_HW_TIMER && ( defined __i386 || defined _M_IX86 || defined __x86_64__ || defined _M_X64 ) if( !TraceWrite( TraceClock, sizeof( TraceClock ), "x86-tsc", 8 ) ) return false; #elif __ARM_ARCH >= 6