* @brief Implementation of @c limitSystemMemory() on *BSD. * * AKA FreeBSD, DragonFly, NetBSD, OpenBSD, TrueOS, PCBSD */
| 154 | * AKA FreeBSD, DragonFly, NetBSD, OpenBSD, TrueOS, PCBSD |
| 155 | */ |
| 156 | bool limitSystemMemoryOnBSD(std::size_t limit) { |
| 157 | return limitSystemMemoryOnPOSIX(limit); |
| 158 | } |
| 159 | |
| 160 | #else |
| 161 |
no test coverage detected