Skip to content

Commit

Permalink
smaller GC queues
Browse files Browse the repository at this point in the history
  • Loading branch information
d-netto committed Aug 28, 2023
1 parent 6e370da commit ad7b88d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gc.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ typedef struct _jl_gc_chunk_t {
#define GC_CHUNK_BATCH_SIZE (1 << 16) // maximum number of references that can be processed
// without creating a chunk

#define GC_PTR_QUEUE_INIT_SIZE (1 << 18) // initial size of queue of `jl_value_t *`
#define GC_CHUNK_QUEUE_INIT_SIZE (1 << 14) // initial size of chunk-queue
#define GC_PTR_QUEUE_INIT_SIZE (1 << 12) // initial size of queue of `jl_value_t *`
#define GC_CHUNK_QUEUE_INIT_SIZE (1 << 12) // initial size of chunk-queue

// layout for big (>2k) objects

Expand Down

0 comments on commit ad7b88d

Please sign in to comment.