Skip to content

Instantly share code, notes, and snippets.

@yhirose
Created December 10, 2015 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yhirose/c9507b65852eb1024280 to your computer and use it in GitHub Desktop.
Save yhirose/c9507b65852eb1024280 to your computer and use it in GitHub Desktop.
i := 0
for {
pc, fn, line, ok := runtime.Caller(i)
if ok == false {
break
}
fmt.Printf("[stack-%d] %s[%s:%d]\n", i, runtime.FuncForPC(pc).Name(), fn, line)
i++
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment