mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Revert "runtime: cleanup free_memory comptime conditional (#18968)"
This reverts commit 571469a6ac
.
This commit is contained in:
parent
571469a6ac
commit
e03c0329c1
@ -19,6 +19,7 @@ fn C.host_page_size(host C.host_t, out_page_size &C.vm_size_t) int
|
||||
fn C.host_statistics64(host C.host_t, flavor int, host_info_out &int, host_info_outCnt &u32) int
|
||||
|
||||
fn free_memory_impl() usize {
|
||||
$if macos {
|
||||
mut hs := C.vm_statistics64_data_t{}
|
||||
mut vmsz := u32(C.HOST_VM_INFO64_COUNT)
|
||||
mut hps := u32(0)
|
||||
@ -29,3 +30,5 @@ fn free_memory_impl() usize {
|
||||
}
|
||||
return usize(u64(hs.free_count) * u64(hps))
|
||||
}
|
||||
return 1
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
module runtime
|
||||
|
||||
fn free_memory_impl() usize {
|
||||
$if linux {
|
||||
page_size := usize(C.sysconf(C._SC_PAGESIZE))
|
||||
av_phys_pages := usize(C.sysconf(C._SC_AVPHYS_PAGES))
|
||||
return page_size * av_phys_pages
|
||||
}
|
||||
return 1
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user