We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 893fecc commit b189bedCopy full SHA for b189bed
src/julia.h
@@ -2052,9 +2052,6 @@ typedef struct _jl_task_t {
2052
2053
// hidden state:
2054
2055
-#ifdef USE_TRACY
2056
- const char *name;
2057
-#endif
2058
// id of owning thread - does not need to be defined until the task runs
2059
_Atomic(int16_t) tid;
2060
// threadpool id
@@ -2072,6 +2069,9 @@ typedef struct _jl_task_t {
2072
2069
size_t world_age;
2073
2070
// quick lookup for current ptls
2074
2071
jl_ptls_t ptls; // == jl_all_tls_states[tid]
+#ifdef USE_TRACY
+ const char *name;
+#endif
2075
// saved exception stack
2076
jl_excstack_t *excstack;
2077
// current exception handler
0 commit comments