From 9410e633d589f31102d0dd0cba507c6bbe544a81 Mon Sep 17 00:00:00 2001 From: Marcos Slomp Date: Tue, 5 May 2026 10:08:34 -0700 Subject: [PATCH] note about iOS devices --- public/client/apple/TracyMach.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/client/apple/TracyMach.cpp b/public/client/apple/TracyMach.cpp index 018c3ee54a..3aa0dc4edd 100644 --- a/public/client/apple/TracyMach.cpp +++ b/public/client/apple/TracyMach.cpp @@ -207,6 +207,8 @@ bool SysTraceStart( int64_t& samplingPeriod ) // (technically, since this is a software-based user-mode sampling, elevated // privileges are unnecessary, but doing so keeps the behavior consistent with // the system tracing in other platforms) + // NOTE/TODO: as is, iOS devices will never be able to run this system tracing + // because iOS apps can never have an uid of 0... if( geteuid() != 0 ) return false; auto& systrace = SysTraceApple::Get();