* @brief Implementation of @c getTotalSystemMemory() on Linux. */
| 163 | * @brief Implementation of @c getTotalSystemMemory() on Linux. |
| 164 | */ |
| 165 | std::size_t getTotalSystemMemoryOnLinux() { |
| 166 | struct sysinfo system_info; |
| 167 | auto rc = sysinfo(&system_info); |
| 168 | return rc == 0 ? system_info.totalram : 0; |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * @brief Implementation of @c limitSystemMemory() on Linux. |
no test coverage detected