supereight
Loading...
Searching...
No Matches
Functions
se::system Namespace Reference

Functions

size_t memory_usage_self ()
 Return the memory usage in bytes of the calling process.
 

Function Documentation

◆ memory_usage_self()

size_t se::system::memory_usage_self ( )

Return the memory usage in bytes of the calling process.

This function depends on the underlying OS. It's implemented for the following:

  • Linux: It parses /proc/self/status for the memory usage (VmRSS + VmSwap). The returned value will be an upper bound on the memory the program actually needs due to how memory allocations are handled by the OS.
  • Other: Always returns 0.
Returns
The memory usage in bytes.