Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 rd5c1051  
    6363static symtab_t *app_symtab;
    6464
    65 static errno_t connect_task(task_id_t task_id);
     65static int connect_task(task_id_t task_id);
    6666static int parse_args(int argc, char *argv[]);
    6767static void print_syntax(void);
    68 static errno_t threads_dump(void);
    69 static errno_t thread_dump(uintptr_t thash);
    70 static errno_t areas_dump(void);
    71 static errno_t td_read_uintptr(void *arg, uintptr_t addr, uintptr_t *value);
     68static int threads_dump(void);
     69static int thread_dump(uintptr_t thash);
     70static int areas_dump(void);
     71static int td_read_uintptr(void *arg, uintptr_t addr, uintptr_t *value);
    7272
    7373static void autoload_syms(void);
     
    8383int main(int argc, char *argv[])
    8484{
    85         errno_t rc;
     85        int rc;
    8686
    8787        printf("Task Dump Utility\n");
     
    122122}
    123123
    124 static errno_t connect_task(task_id_t task_id)
     124static int connect_task(task_id_t task_id)
    125125{
    126126        async_sess_t *ksess = async_connect_kbox(task_id);
     
    140140        }
    141141       
    142         errno_t rc = udebug_begin(ksess);
     142        int rc = udebug_begin(ksess);
    143143        if (rc != EOK) {
    144144                printf("udebug_begin() -> %s\n", str_error_name(rc));
     
    210210}
    211211
    212 static errno_t threads_dump(void)
     212static int threads_dump(void)
    213213{
    214214        uintptr_t *thash_buf;
     
    219219        size_t needed;
    220220        size_t i;
    221         errno_t rc;
     221        int rc;
    222222
    223223        /* TODO: See why NULL does not work. */
     
    260260}
    261261
    262 static errno_t areas_dump(void)
     262static int areas_dump(void)
    263263{
    264264        as_area_info_t *ainfo_buf;
     
    269269        size_t needed;
    270270        size_t i;
    271         errno_t rc;
     271        int rc;
    272272
    273273        rc = udebug_areas_read(sess, &dummy_buf, 0, &copied, &needed);
     
    320320}
    321321
    322 errno_t td_stacktrace(uintptr_t fp, uintptr_t pc)
     322int td_stacktrace(uintptr_t fp, uintptr_t pc)
    323323{
    324324        uintptr_t nfp;
    325325        stacktrace_t st;
    326326        char *sym_pc;
    327         errno_t rc;
     327        int rc;
    328328
    329329        st.op_arg = NULL;
     
    349349}
    350350
    351 static errno_t thread_dump(uintptr_t thash)
     351static int thread_dump(uintptr_t thash)
    352352{
    353353        istate_t istate;
    354354        uintptr_t pc, fp;
    355355        char *sym_pc;
    356         errno_t rc;
     356        int rc;
    357357
    358358        rc = udebug_regs_read(sess, thash, &istate);
     
    378378}
    379379
    380 static errno_t td_read_uintptr(void *arg, uintptr_t addr, uintptr_t *value)
     380static int td_read_uintptr(void *arg, uintptr_t addr, uintptr_t *value)
    381381{
    382382        uintptr_t data;
    383         errno_t rc;
     383        int rc;
    384384
    385385        (void) arg;
     
    399399{
    400400        char *file_name;
    401         errno_t rc;
     401        int rc;
    402402        int ret;
    403403
     
    455455        size_t copied, needed, name_size;
    456456        char *name;
    457         errno_t rc;
     457        int rc;
    458458
    459459        rc = udebug_name_read(sess, &dummy_buf, 0, &copied, &needed);
     
    488488        char *name;
    489489        size_t offs;
    490         errno_t rc;
     490        int rc;
    491491        int ret;
    492492        char *str;
Note: See TracChangeset for help on using the changeset viewer.