Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
d-netto committed Sep 21, 2023
1 parent f65bdc6 commit 1f69d49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/stackwalk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1135,6 +1135,7 @@ JL_DLLEXPORT void jl_print_task_backtraces(int show_done) JL_NOTSAFEPOINT
size_t nthreads = jl_atomic_load_acquire(&jl_n_threads);
jl_ptls_t *allstates = jl_atomic_load_relaxed(&jl_all_tls_states);
for (size_t i = 0; i < nthreads; i++) {
// skip GC threads since they don't have tasks
if (gc_first_tid <= i && i < gc_first_tid + jl_n_gcthreads) {
continue;
}
Expand Down
5 changes: 5 additions & 0 deletions uv_constants.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-mmacosx-version-min=11.0

-P
-I/Users/dnetto/RAI/julia-master/usr/include
16

0 comments on commit 1f69d49

Please sign in to comment.