mirror of
https://github.com/neovim/neovim.git
synced 2026-02-20 09:19:43 +10:00
13 lines
252 B
C
13 lines
252 B
C
/// Functions for accessing system memory information.
|
|
|
|
#include <uv.h>
|
|
|
|
#include "nvim/os/os.h"
|
|
|
|
/// Get the total system physical memory in KiB.
|
|
uint64_t os_get_total_mem_kib(void)
|
|
{
|
|
// Convert bytes to KiB.
|
|
return uv_get_total_memory() >> 10;
|
|
}
|