import "github.com/apache/beam/sdks/go/pkg/beam/core/util/symtab"
Package symtab allows reading low-level symbol information from the symbol table.
type SymbolTable struct {
// contains filtered or unexported fields
}
SymbolTable allows for mapping between symbols and their addresses.
func New(filename string) (*SymbolTable, error)
New creates a new symbol table based on the debug info read from the specified file.
func (s *SymbolTable) Addr2Sym(addr uintptr) (string, error)
Addr2Sym returns the symbol name for the provided address.
func (s *SymbolTable) Sym2Addr(symbol string) (uintptr, error)
Sym2Addr returns the address of the provided symbol name.
Package symtab imports 8 packages (graph) and is imported by 2 packages. Updated 2020-02-13. Refresh now. Tools for package owners.