mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 23:37:38 +02:00
Minor GC's happen all the time - logging is verbose
This commit is contained in:
parent
c9a69ae208
commit
64e0255d69
1 changed files with 2 additions and 2 deletions
|
@ -2361,7 +2361,7 @@ int gc_minor(void *data, object low_limit, object high_limit, closure cont, obje
|
|||
int scani = 0, alloci = 0;
|
||||
int heap_grown = 0;
|
||||
|
||||
#if GC_DEBUG_TRACE
|
||||
#if GC_DEBUG_VERBOSE
|
||||
fprintf(stderr, "started minor GC\n");
|
||||
#endif
|
||||
|
||||
|
@ -2478,7 +2478,7 @@ int gc_minor(void *data, object low_limit, object high_limit, closure cont, obje
|
|||
}
|
||||
scani++;
|
||||
}
|
||||
#if GC_DEBUG_TRACE
|
||||
#if GC_DEBUG_VERBOSE
|
||||
fprintf(stderr, "done with minor GC\n");
|
||||
#endif
|
||||
return alloci;
|
||||
|
|
Loading…
Add table
Reference in a new issue