Changeset e067dcd in mainline
- Timestamp:
- 2010-02-07T10:55:41Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eb73a50
- Parents:
- 444a54e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskdump/symtab.c
r444a54e re067dcd 255 255 256 256 stype = ELF_ST_TYPE(st->sym[i].st_info); 257 if (stype != STT_OBJECT && stype != STT_FUNC) 258 continue; 257 if (stype != STT_OBJECT && stype != STT_FUNC && 258 stype != STT_NOTYPE) { 259 continue; 260 } 259 261 260 262 saddr = st->sym[i].st_value; 261 263 sname = st->strtab + st->sym[i].st_name; 264 265 /* An ugly hack to filter out some special ARM symbols. */ 266 if (sname[0] == '$') 267 continue; 262 268 263 269 if (best_name == NULL || (saddr <= addr && saddr > best_addr)) {
Note:
See TracChangeset
for help on using the changeset viewer.