Commit e49a183b authored by Russ Cox's avatar Russ Cox

runtime/debug: document that Stack is deprecated

Fixes #4070.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/7004050
parent 3aed92f8
...@@ -29,6 +29,8 @@ func PrintStack() { ...@@ -29,6 +29,8 @@ func PrintStack() {
// For each routine, it includes the source line information and PC value, // For each routine, it includes the source line information and PC value,
// then attempts to discover, for Go functions, the calling function or // then attempts to discover, for Go functions, the calling function or
// method and the text of the line containing the invocation. // method and the text of the line containing the invocation.
//
// This function is deprecated. Use package runtime's Stack instead.
func Stack() []byte { func Stack() []byte {
return stack() return stack()
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment