Mirror of
forum.nim-lang.org
index
1021 :: Read its own memory usage?
[2015-03-14T15:35:45+01:00]
View Orginal
Daimon
(orginal)
[2015-03-14T15:35:45+01:00]
view original
Is there a handy way of reading the own processes memory usage during runtime?
def
(orginal)
[2015-03-14T16:57:55+01:00]
view original
There is
echo GC_getStatistics()
for GC memory.
Stefan_Salewski
(orginal)
[2015-03-14T17:00:30+01:00]
view original
And the Aporia editor contains code to show memory statistics, it may be a good example.
Daimon
(orginal)
[2015-03-14T17:01:34+01:00]
view original
Excellent, thanks guys :)