diff options
| author | Keith Randall <khr@golang.org> | 2023-01-26 14:46:51 -0800 |
|---|---|---|
| committer | Keith Randall <khr@golang.org> | 2023-01-28 20:46:29 +0000 |
| commit | 79edd1d19d247a9c35ee90c96f9b70b54c4dfda2 (patch) | |
| tree | 11393bef6bd9895d90ad6a4a6d319c7597ceee33 /src/runtime/runtime1.go | |
| parent | 469afbcc468115153b7ce3462619197aeadd87ad (diff) | |
| download | go-79edd1d19d247a9c35ee90c96f9b70b54c4dfda2.tar.xz | |
runtime: remove go119MemoryLimitSupport flag
Change-Id: I207480d991c6242a1610795605c5ec6a3b3c59de
Reviewed-on: https://go-review.googlesource.com/c/go/+/463225
Reviewed-by: Keith Randall <khr@google.com>
Run-TryBot: Keith Randall <khr@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/runtime/runtime1.go')
| -rw-r--r-- | src/runtime/runtime1.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/runtime1.go b/src/runtime/runtime1.go index 5f9555e404..f5d74b7aed 100644 --- a/src/runtime/runtime1.go +++ b/src/runtime/runtime1.go @@ -364,7 +364,7 @@ func parsedebugvars() { // defaults debug.cgocheck = 1 debug.invalidptr = 1 - debug.adaptivestackstart = 1 // go119 - set this to 0 to turn larger initial goroutine stacks off + debug.adaptivestackstart = 1 // set this to 0 to turn larger initial goroutine stacks off if GOOS == "linux" { // On Linux, MADV_FREE is faster than MADV_DONTNEED, // but doesn't affect many of the statistics that |
