comparison lphobos/gcstats.d @ 1:c53b6e3fe49a trunk

[svn r5] Initial commit. Most things are very rough.
author lindquist
date Sat, 01 Sep 2007 21:43:27 +0200
parents
children
comparison
equal deleted inserted replaced
0:a9e71648e74d 1:c53b6e3fe49a
1 // Copyright (c) 1999-2002 by Digital Mars
2 // All Rights Reserved
3 // written by Walter Bright
4 // www.digitalmars.com
5
6 struct GCStats
7 {
8 size_t poolsize; // total size of pool
9 size_t usedsize; // bytes allocated
10 size_t freeblocks; // number of blocks marked FREE
11 size_t freelistsize; // total of memory on free lists
12 size_t pageblocks; // number of blocks marked PAGE
13 }
14
15