summaryrefslogtreecommitdiff
path: root/ports/unix/gccollect.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/gccollect.c')
-rw-r--r--ports/unix/gccollect.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/ports/unix/gccollect.c b/ports/unix/gccollect.c
index 79b17663c..94c9c61ea 100644
--- a/ports/unix/gccollect.c
+++ b/ports/unix/gccollect.c
@@ -34,8 +34,6 @@
#if MICROPY_ENABLE_GC
void gc_collect(void) {
- // gc_dump_info();
-
gc_collect_start();
gc_helper_collect_regs_and_stack();
#if MICROPY_PY_THREAD
@@ -45,9 +43,6 @@ void gc_collect(void) {
mp_unix_mark_exec();
#endif
gc_collect_end();
-
- // printf("-----\n");
- // gc_dump_info();
}
#endif // MICROPY_ENABLE_GC