[疑难] 请教关于 gc_stats() 函数
tomqyp
2008-02-21
今天试了试dsource上的几个更新的项目,发现有些会引用gc_stats这个函数(比如dwt-win的dwt/dwthelper/utils.d),可是我翻偏了dmc和dmd的lib和源码都没找到这个函数。
不知道在哪可以找到这个函数,请各位达人不吝赐教~~ |
|
Colorful
2008-02-22
你指的是不是
void getStats(out GCStats stats) 它在GC module. |
|
Colorful
2008-02-22
phobos库中没有gc_stats函数。
Tango库中GC module中有这个函数。 extern (C) GCStats gc_stats() { GCStats stats = void; _gc.getStats( stats ); return stats; } |
|
tomqyp
2008-02-23
谢谢 Colorful
|