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

Этот коммит содержится в:
Damian Gryski 2021-11-11 10:04:01 -08:00 коммит произвёл Ayke
родитель 7273a2b5fd
коммит 348a02d697

Просмотреть файл

@ -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
}