* @brief Limits system memory to half of the total memory. */
| 226 | * @brief Limits system memory to half of the total memory. |
| 227 | */ |
| 228 | bool limitSystemMemoryToHalfOfTotalSystemMemory() { |
| 229 | auto totalSize = getTotalSystemMemory(); |
| 230 | if (totalSize == 0) { |
| 231 | return false; |
| 232 | } |
| 233 | |
| 234 | return limitSystemMemory(totalSize / 2); |
| 235 | } |
| 236 | |
| 237 | } // namespace utils |
| 238 | } // namespace retdec |