X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=includes%2FBlock.h;h=28e03744925f68dd8c50f932c79e1a4e065b6191;hb=2b398b2215fd5238e222bcb3013aa41d7b631cfa;hp=e2e691ab0e17db80981f5fc923b3b5a47eab9756;hpb=dbbf15c0f141357aa49b583286174867baadb821;p=ghc-hetmet.git diff --git a/includes/Block.h b/includes/Block.h index e2e691a..28e0374 100644 --- a/includes/Block.h +++ b/includes/Block.h @@ -84,12 +84,16 @@ 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 +/* we know about this block (for finding leaks) */ +#define BF_KNOWN 128 /* Finding the block descriptor for a given block -------------------------- */