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