From 3bbf64d4407bd9c9da52d4ad21dfe9007ae83f1c Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 20 Jan 2016 23:48:04 -0500 Subject: [PATCH] Added comments --- gc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gc.c b/gc.c index 0c8955b4..fc4c458f 100644 --- a/gc.c +++ b/gc.c @@ -1248,6 +1248,9 @@ void gc_thread_data_free(gc_thread_data *thd) /** * Called explicitly from a mutator thread to let the collector know * it (may) block for an unknown period of time. + * + * The current continuation is required so that we can trace over it + * in case the collector has to cooperate for the mutator. */ void gc_mutator_thread_blocked(gc_thread_data *thd, object cont) {