瀏覽代碼

- removed the heap alloc/free function debug output

git-svn-id: branches/wasm@48342 -
nickysn 4 年之前
父節點
當前提交
a6d332d092
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      rtl/wasi/sysheap.inc

+ 0 - 3
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;