diff --git a/Assets/dll/libwaterboxhost.so b/Assets/dll/libwaterboxhost.so index f87c4b4e9c..f3de49c225 100644 Binary files a/Assets/dll/libwaterboxhost.so and b/Assets/dll/libwaterboxhost.so differ diff --git a/waterbox/waterboxhost/src/host.rs b/waterbox/waterboxhost/src/host.rs index f01f3f5173..b755bc8ef1 100644 --- a/waterbox/waterboxhost/src/host.rs +++ b/waterbox/waterboxhost/src/host.rs @@ -361,6 +361,7 @@ extern "sysv64" fn syscall( old } else if a1 > old { h.memory_block.mmap_fixed(AddressRange { start: old, size: a1 - old }, Protection::RW, true).unwrap(); + #[cfg(debug_assertions)] println!("Allocated {} bytes on sbrk heap, usage {}/{}", a1 - old, a1 - addr.start, addr.size); a1 } else {