src/runtime/debug: stub debug.Stack()

This commit is contained in:
Damian Gryski
2021-11-11 10:04:01 -08:00
committed by Ayke
parent 7273a2b5fd
commit 348a02d697
+7
View File
@@ -8,3 +8,10 @@ package debug
func SetMaxStack(n int) int {
return n
}
// Stack returns a formatted stack trace of the goroutine that calls it.
//
// Not implemented.
func Stack() []byte {
return nil
}