From c30e6ebe1200962d37751255ca489defd96819d6 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 9 Apr 2022 09:22:39 +0900 Subject: [PATCH] gc.c: add red (persistent no scan) color in the comment [ci skip] --- src/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gc.c b/src/gc.c index 99fc5e40b..886ccfdf9 100644 --- a/src/gc.c +++ b/src/gc.c @@ -193,7 +193,7 @@ gettimeofday_time(void) #define GC_STEP_SIZE 1024 -/* white: 001 or 010, black: 100, gray: 000 */ +/* white: 001 or 010, black: 100, gray: 000, red:111 */ #define GC_GRAY 0 #define GC_WHITE_A 1 #define GC_WHITE_B (1 << 1)