mirror of
https://github.com/vlang/v.git
synced 2025-09-16 07:52:32 +03:00
6 lines
170 B
V
6 lines
170 B
V
module runtime
|
|
|
|
// used_memory retrieves the current physical memory usage of the process.
|
|
pub fn used_memory() !u64 {
|
|
return error('`used_memory()` not implemented')
|
|
}
|