Dan Sugalski <[EMAIL PROTECTED]> wrote:
> struct hunk {
> struct pobj header;
> INTVAL used;
> INTVAL avail;Only one of these is needed (and currently used: "used") > struct hunk *upchain; > struct regframe RegisterFrame[FRAMES_PER_HUNK]; I'd rather not have the store statically inside the hunk: - small objects code currently has an upper limit for sized header pools - more and differently sized pools impose negative effects on DOD times - it needs more code duplication leo
