Changes in / [eb73a50:f27ada7] in mainline


Ignore:
Location:
uspace
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskdump/symtab.c

    reb73a50 rf27ada7  
    255255
    256256                stype = ELF_ST_TYPE(st->sym[i].st_info);
    257                 if (stype != STT_OBJECT && stype != STT_FUNC &&
    258                     stype != STT_NOTYPE) {
     257                if (stype != STT_OBJECT && stype != STT_FUNC)
    259258                        continue;
    260                 }
    261259
    262260                saddr = st->sym[i].st_value;
    263261                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;
    268262
    269263                if (best_name == NULL || (saddr <= addr && saddr > best_addr)) {
  • uspace/srv/taskmon/taskmon.c

    reb73a50 rf27ada7  
    6666        }
    6767
    68         if (asprintf(&dump_fname, "/data/core%" PRIuTASKID, taskid) < 0) {
     68        if (asprintf(&dump_fname, "/data/core" PRIuTASKID, taskid) < 0) {
    6969                printf("Memory allocation failed.\n");
    7070                return;
Note: See TracChangeset for help on using the changeset viewer.