Browse Source

src/runtime/debug: add SetMaxStack to allow compress/flate tests to build

pull/2280/head
Damian Gryski 3 years ago
committed by Ayke
parent
commit
44bb381220
  1. 8
      src/runtime/debug/debug.go

8
src/runtime/debug/debug.go

@ -1,2 +1,10 @@
// Package debug is a dummy package that is not yet implemented.
package debug
// SetMaxStack sets the maximum amount of memory that can be used by a single
// goroutine stack.
//
// Not implemented.
func SetMaxStack(n int) int {
return n
}

Loading…
Cancel
Save