diff options
Diffstat (limited to 'vendor/modernc.org/libc/libc32.go')
-rw-r--r-- | vendor/modernc.org/libc/libc32.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/modernc.org/libc/libc32.go b/vendor/modernc.org/libc/libc32.go index 6364e288b..060728489 100644 --- a/vendor/modernc.org/libc/libc32.go +++ b/vendor/modernc.org/libc/libc32.go @@ -7,6 +7,10 @@ package libc // import "modernc.org/libc" +const ( + heapSize = 1 << 30 // Adjust for your debugging session requirements and system RAM size. +) + type ( // RawMem represents the biggest byte array the runtime can handle RawMem [1<<31 - 1]byte |