We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
available_memory
purgeable_count
1 parent a37b165 commit 3df36d4Copy full SHA for 3df36d4
src/ParallelTestRunner.jl
@@ -286,7 +286,7 @@ function available_memory()
286
287
page_size = Int(@ccall sysconf(29::UInt32)::UInt32)
288
289
- return (Int(vms[].free_count) + Int(vms[].inactive_count)) * page_size
+ return (Int(vms[].free_count) + Int(vms[].inactive_count) + Int(vms[].purgeable_count)) * page_size
290
end
291
292
else
0 commit comments