Explorar o código

- removed the heap alloc/free function debug output

git-svn-id: branches/wasm@48342 -
nickysn %!s(int64=4) %!d(string=hai) anos
pai
achega
a6d332d092
Modificáronse 1 ficheiros con 0 adicións e 3 borrados
  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;