rename variable_gray_list to atomic_gray_list

This commit is contained in:
fleuria
2013-07-24 18:18:09 +08:00
parent 88eb0f54e9
commit 2591922ec2
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -134,8 +134,8 @@ typedef struct mrb_state {
enum gc_state gc_state; /* state of gc */
int current_white_part; /* make white object by white_part */
struct RBasic *gray_list; /* list of gray objects */
struct RBasic *variable_gray_list; /* list of objects to be traversed atomically */
struct RBasic *gray_list; /* list of gray objects to be traversed incrementally */
struct RBasic *atomic_gray_list; /* list of objects to be traversed atomically */
size_t gc_live_after_mark;
size_t gc_threshold;
int gc_interval_ratio;