Skip to content

Commit

Permalink
timeout adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
d-netto committed Feb 12, 2023
1 parent 5642dac commit 88ebe01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/partr.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ extern uv_mutex_t gc_threads_lock;
extern uv_cond_t gc_threads_cond;
extern _Atomic(uint8_t) jl_gc_marking;
extern void gc_mark_loop_worker(jl_ptls_t ptls);
const size_t min_timeout_ms = 16;
const size_t max_timeout_ms = 256;
const size_t min_timeout_ms = 2;
const size_t max_timeout_ms = 32;

// gc thread function
void jl_gc_threadfun(void *arg)
Expand Down

0 comments on commit 88ebe01

Please sign in to comment.