Cyclone Scheme
0.28.0
|
◆ gc_collector_mark_gray
Value:
mark_stack = vpbuffer_add(mark_stack, &mark_stack_len, mark_stack_i++, gobj); \
}
"Color" objects gray by adding them to the mark stack for further processing.
Note that stack objects are always colored red during creation, so they should never be added to the mark stack. Which would be bad because it could lead to stack corruption. |