summaryrefslogtreecommitdiffstatshomepage
path: root/py/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/gc.c')
-rw-r--r--py/gc.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/py/gc.c b/py/gc.c
index 121e50b784..86db78f84e 100644
--- a/py/gc.c
+++ b/py/gc.c
@@ -222,13 +222,9 @@ STATIC void gc_deal_with_stack_overflow(void) {
}
}
-#if MICROPY_PY_GC_COLLECT_RETVAL
-uint gc_collected;
-#endif
-
STATIC void gc_sweep(void) {
#if MICROPY_PY_GC_COLLECT_RETVAL
- gc_collected = 0;
+ MP_STATE_MEM(gc_collected) = 0;
#endif
// free unmarked heads and their tails
int free_tail = 0;
@@ -253,7 +249,7 @@ STATIC void gc_sweep(void) {
#endif
free_tail = 1;
#if MICROPY_PY_GC_COLLECT_RETVAL
- gc_collected++;
+ MP_STATE_MEM(gc_collected)++;
#endif
// fall through to free the head