search for: b_allocated

Displaying 1 result from an estimated 1 matches for "b_allocated".

Did you mean: n_allocated
2004 Feb 06
4
memory reduction
...b)(); + /* function to call if + * malloc fails */ + int flags; + + /* statistical data */ + unsigned long e_created; /* extents created */ + unsigned long e_freed; /* extents detroyed */ + uint64 n_allocated; /* calls to alloc */ + uint64 n_freed; /* calls to free */ + uint64 b_allocated; /* cum. bytes allocated */ + uint64 b_freed; /* cum. bytes freed */ +}; + +struct pool_extent +{ + void *start; /* starting address */ + size_t free; /* free bytecount */ + size_t bound; /* bytes bound by padding, + * overhead and freed */ + struct pool_extent *next; +}; + +#defin...