]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/runtime/debug/stack.go
runtime: add available godoc link
[gostls13.git] / src / runtime / debug / stack.go
index 952d834bc43bb0d41c3419d9a798634f3b514b73..3999840d3c8ef0d798a2429542369bd9c7462475 100644 (file)
@@ -11,15 +11,13 @@ import (
        "runtime"
 )
 
-// PrintStack prints to standard error the stack trace returned by Stack.
+// PrintStack prints to standard error the stack trace returned by runtime.Stack.
 func PrintStack() {
        os.Stderr.Write(Stack())
 }
 
 // Stack returns a formatted stack trace of the goroutine that calls it.
-// For each routine, it includes the source line information and PC value,
-// then attempts to discover, for Go functions, the calling function or
-// method.
+// It calls [runtime.Stack] with a large enough buffer to capture the entire trace.
 func Stack() []byte {
        buf := make([]byte, 1024)
        for {