diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/runtime/mstkbar.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runtime/mstkbar.go b/src/runtime/mstkbar.go index 1bf9d573b7..4415559b6c 100644 --- a/src/runtime/mstkbar.go +++ b/src/runtime/mstkbar.go @@ -148,6 +148,10 @@ var firstStackBarrierOffset = 1024 // gcMaxStackBarriers returns the maximum number of stack barriers // that can be installed in a stack of stackSize bytes. func gcMaxStackBarriers(stackSize int) (n int) { + if debug.gcstackbarrieroff > 0 { + return 0 + } + if firstStackBarrierOffset == 0 { // Special debugging case for inserting stack barriers // at every frame. Steal half of the stack for the |
