Browse Source

runtime/debug: stubs PrintStack

Signed-off-by: Takeshi Yoneda <takeshi@tetrate.io>
pull/3414/head
Takeshi Yoneda 2 years ago
committed by Ron Evans
parent
commit
13698b17f7
  1. 5
      src/runtime/debug/debug.go

5
src/runtime/debug/debug.go

@ -9,6 +9,11 @@ func SetMaxStack(n int) int {
return n
}
// PrintStack prints to standard error the stack trace returned by runtime.Stack.
//
// Not implemented.
func PrintStack() {}
// Stack returns a formatted stack trace of the goroutine that calls it.
//
// Not implemented.

Loading…
Cancel
Save