blob: 4eef84bfbe928359adc1efbaaf8effddd883528f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/// Functions for accessing system memory information.
#include <uv.h>
#include "os/os.h"
long_u os_get_total_mem_kib(void) {
// Convert bytes to KiB.
return uv_get_total_memory() >> 10;
}
|