Skip to content

Commit 84224df

Browse files
committed
Remove trailing whitespace
1 parent 2a68c39 commit 84224df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mmtk-gc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ void jl_gc_init(void)
382382
char* max_size_gb = getenv("MMTK_MAX_HSIZE_G");
383383

384384
// default min heap currently set as 0
385-
// and default max heap currently set as 0
385+
// and default max heap currently set as 0
386386
// which means that by default mmtk will use stock heuristics
387387
if (min_size_def != NULL) {
388388
char *p;
@@ -427,7 +427,7 @@ void jl_gc_init(void)
427427
// If the two values are the same, we can use either. Otherwise, we need to be careful.
428428
uintptr_t gcthreads = jl_options.ngcthreads;
429429
// if only max_heap_size is set (max_size_def != 0), mmtk will run with a fixed heap size
430-
// if both min_heap_size and max_heap_size are set (their values different than 0), mmtk will use membalancer
430+
// if both min_heap_size and max_heap_size are set (their values different than 0), mmtk will use membalancer
431431
// and resize the heap within those values. If none of these variables are set, then mmtk will use stock heuristics
432432
// note that this will be overwritten in Rust by the env variable MMTK_GC_TRIGGER
433433
mmtk_gc_init(min_heap_size, max_heap_size, gcthreads, &mmtk_upcalls, (sizeof(jl_taggedvalue_t)), jl_buff_tag);

0 commit comments

Comments
 (0)