Improve documentation of LoadInformation()

This commit is contained in:
Derek Parker
2014-07-16 20:16:49 -05:00
parent dcb707001b
commit f7e36b3c46

View File

@ -85,7 +85,10 @@ func NewDebugProcess(pid int) (*DebuggedProcess, error) {
}
// Finds the executable from /proc/<pid>/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 {