added SmallPointer<<getBytes, SmallPointer<<putBytes

This commit is contained in:
hyunghwan.chung
2017-12-09 16:04:17 +00:00
parent 541ab59028
commit 7c5afe2d5b
4 changed files with 130 additions and 9 deletions

View File

@ -72,7 +72,7 @@ class System(Apex)
if (gc)
{
System logNl: 'Exiting the GC finalization process ' & (thisProcess id) asString.
break
break.
}.
System logNl: 'Forcing garbage collection before termination in ' & (thisProcess id) asString.
@ -342,5 +342,8 @@ class SmallPointer(Object)
method(#primitive) putUint32 (offset, value).
method(#primitive) putUint64 (offset, value).
method(#primitive) getBytes (offset, byte_array, offset_in_buffer, len_in_buffer).
method(#primitive) putBytes (offset, byte_array, offset_in_buffer, len_in_buffer).
method(#primitive) free.
}