From f7e36b3c46b7845d9055e93c563dbfd5c12ba794 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Wed, 16 Jul 2014 20:16:49 -0500 Subject: [PATCH] Improve documentation of LoadInformation() --- proctl/proctl_linux_amd64.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/proctl/proctl_linux_amd64.go b/proctl/proctl_linux_amd64.go index 330d2810..20dfa33a 100644 --- a/proctl/proctl_linux_amd64.go +++ b/proctl/proctl_linux_amd64.go @@ -85,7 +85,10 @@ func NewDebugProcess(pid int) (*DebuggedProcess, error) { } // Finds the executable from /proc//exe and then -// uses that to parse the Go symbol table. +// uses that to parse the following information: +// * Dwarf .debug_frame section +// * Dwarf .debug_line section +// * Go symbol table. func (dbp *DebuggedProcess) LoadInformation() error { err := dbp.findExecutable() if err != nil {