| 211 | qindex mem_tryGetLocalRamCapacityInBytes() { |
| 212 | #if defined(__linux__) |
| 213 | struct sysinfo info; |
| 214 | if (sysinfo(&info) == 0) |
| 215 | return (qindex) info.totalram * info.mem_unit; |
| 216 | #elif defined(__APPLE__) |
no outgoing calls
no test coverage detected