Changeset ca0e838 in mainline for uspace/app/taskdump/symtab.c
- Timestamp:
- 2019-02-23T17:52:16Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 52b44c6
- Parents:
- ab87db5
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-11 15:28:25)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-23 17:52:16)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskdump/symtab.c
rab87db5 rca0e838 215 215 continue; 216 216 217 stype = ELF_ST_TYPE(st->sym[i].st_info);217 stype = elf_st_type(st->sym[i].st_info); 218 218 if (stype != STT_OBJECT && stype != STT_FUNC) 219 219 continue; … … 257 257 continue; 258 258 259 stype = ELF_ST_TYPE(st->sym[i].st_info);259 stype = elf_st_type(st->sym[i].st_info); 260 260 if (stype != STT_OBJECT && stype != STT_FUNC && 261 261 stype != STT_NOTYPE) {
Note:
See TracChangeset
for help on using the changeset viewer.