mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 02:45:25 +03:00
15 lines
410 B
D
15 lines
410 B
D
// Copyright (c) 1999-2002 by Digital Mars
|
|
// All Rights Reserved
|
|
// written by Walter Bright
|
|
// www.digitalmars.com
|
|
|
|
struct GCStats
|
|
{
|
|
size_t poolsize; // total size of pool
|
|
size_t usedsize; // bytes allocated
|
|
size_t freeblocks; // number of blocks marked FREE
|
|
size_t freelistsize; // total of memory on free lists
|
|
size_t pageblocks; // number of blocks marked PAGE
|
|
}
|
|
|
|
|