From 48e82ea1358e6491215569506f9fc61cd5b86b8a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 31 Mar 2018 01:22:21 +0200 Subject: [PATCH] Workaround pthreads thread name limit. --- common/TracySystem.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/TracySystem.hpp b/common/TracySystem.hpp index da2e0da6..a83a93ba 100644 --- a/common/TracySystem.hpp +++ b/common/TracySystem.hpp @@ -2,7 +2,7 @@ #define __TRACYSYSTEM_HPP__ #ifdef TRACY_ENABLE -# if defined __ANDROID__ || defined __CYGWIN__ || defined __APPLE__ +# if defined __ANDROID__ || defined __CYGWIN__ || defined __APPLE__ || defined _GNU_SOURCE # define TRACY_COLLECT_THREAD_NAMES # endif #endif