Skip to content

Commit

Permalink
Update src/threading.c - apply @vtjnash's suggestions from review
Browse files Browse the repository at this point in the history
Co-authored-by: Jameson Nash <vtjnash@gmail.com>
  • Loading branch information
NHDaly and vtjnash authored Aug 18, 2021
1 parent 5567f5f commit 35939fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/threading.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ void jl_pgcstack_getkey(jl_get_pgcstack_func **f, jl_pgcstack_key_t *k)
#endif

jl_ptls_t *jl_all_tls_states JL_GLOBALLY_ROOTED;
volatile uint8_t jl_measure_compile_time = 0;
volatile uint64_t jl_cumulative_compile_time = 0;
uint8_t jl_measure_compile_time = 0;
uint64_t jl_cumulative_compile_time = 0;

// return calling thread's ID
// Also update the suspended_threads list in signals-mach when changing the
Expand Down

0 comments on commit 35939fe

Please sign in to comment.