We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8605599 commit 7b3e7cbCopy full SHA for 7b3e7cb
1 file changed
vlib/runtime/used_memory_default.c.v
@@ -1,6 +1,8 @@
1
module runtime
2
3
// used_memory retrieves the current physical memory usage of the process.
4
+// Note: implementation available only on macOS, Linux and Windows. Otherwise,
5
+// returns 'used_memory: not implemented'.
6
pub fn used_memory() !u64 {
- return error('`used_memory()` not implemented')
7
+ return error('used_memory: not implemented')
8
}
0 commit comments