From a6d332d092537eae3a83630e507811e21e50566a Mon Sep 17 00:00:00 2001 From: nickysn Date: Sat, 23 Jan 2021 06:37:22 +0000 Subject: [PATCH] - removed the heap alloc/free function debug output git-svn-id: branches/wasm@48342 - --- rtl/wasi/sysheap.inc | 3 --- 1 file changed, 3 deletions(-) diff --git a/rtl/wasi/sysheap.inc b/rtl/wasi/sysheap.inc index 10ab4e8734..a9034da597 100644 --- a/rtl/wasi/sysheap.inc +++ b/rtl/wasi/sysheap.inc @@ -25,14 +25,11 @@ const page_size = 65536; err = high(longword); begin - DebugWriteLn('SysOSAlloc'); SysOSAlloc:=pointer(fpc_wasm32_memory_size*page_size); if fpc_wasm32_memory_grow((size + page_size - 1) div page_size) = err then SysOSAlloc:=nil; - DebugWriteLn('SysOSAlloc done'); end; procedure SysOSFree(p: pointer; size: ptruint); begin - DebugWriteLn('SysOSFree'); end;