]> Cypherpunks.ru repositories - gostls13.git/commitdiff
runtime/debug: more explicit Stack docs
authorDavid Crawshaw <crawshaw@golang.org>
Wed, 16 Sep 2015 14:29:53 +0000 (10:29 -0400)
committerDavid Crawshaw <crawshaw@golang.org>
Wed, 16 Sep 2015 22:25:11 +0000 (22:25 +0000)
Change-Id: I81a7f22be827519b5290b4acbcba357680cad3c4
Reviewed-on: https://go-review.googlesource.com/14605
Reviewed-by: Rob Pike <r@golang.org>
src/runtime/debug/stack.go

index 952d834bc43bb0d41c3419d9a798634f3b514b73..5d810af5407c304ebf6015cc7bfe338d486a8963 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 {