summaryrefslogtreecommitdiff
path: root/sys/ddb/db_elf.c
AgeCommit message (Collapse)Author
2006-03-13ansi/deregister. No binary change.Jonathan Gray
2003-06-01When searching for the symbol table and string table we were lookingArtur Grabowski
for ".symtab" and ".strtab" in the section names. Instead of doing that, look for section type SHT_SYMTAB for the symbol table and follow the link in sh_link to find the corresponding string table. This is a more correct way of doing things and will work better when the toolchain doesn't generate ".symtab" and ".strtab" names and it will work when there are multiple symbol tables. noone objected to this diff for at least a week.
2002-03-14Final __P removal plus some cosmetic fixupsTodd C. Miller
2002-03-14First round of __P removal in sysTodd C. Miller
2001-08-19Print a reason for failing to init the symbol table.Artur Grabowski
2001-03-15$OpenBSD$Niklas Hallqvist
2001-02-10new symbol handling in ddb for ELF, there is still a problem with hangman on ↵Niklas Hallqvist
alpha though..