diff options
Diffstat (limited to 'includes/Block.h')
-rw-r--r-- | includes/Block.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/includes/Block.h b/includes/Block.h index e2e691ab0e..3d7a5c8a86 100644 --- a/includes/Block.h +++ b/includes/Block.h @@ -84,12 +84,15 @@ typedef struct bdescr_ { #define BF_LARGE 2 /* Block is pinned */ #define BF_PINNED 4 -/* Block is part of a compacted generation */ -#define BF_COMPACTED 8 +/* Block is to be marked, not copied */ +#define BF_MARKED 8 /* Block is free, and on the free list (TODO: is this used?) */ #define BF_FREE 16 /* Block is executable */ #define BF_EXEC 32 +/* Block contains only a small amount of live data */ +#define BF_FRAGMENTED 64 + /* Finding the block descriptor for a given block -------------------------- */ |