Changeset 201abde in mainline for kernel/generic/src/proc/task.c


Ignore:
Timestamp:
2007-04-07T20:06:52Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7e58979
Parents:
6adbe3c2
Message:

make thread ID 64 bit (task ID is 64 bit already)
cleanup thread syscalls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/task.c

    r6adbe3c2 r201abde  
    400400                        order(task_get_accounting(t), &cycles, &suffix);
    401401                       
    402                         printf("%-6lld %-10s %-3ld %#10zx %#10zx %9llu%c %7zd "
     402                        printf("%-6llu %-10s %-3ld %#10zx %#10zx %9llu%c %7zd "
    403403                            "%6zd", t->taskid, t->name, t->context, t, t->as,
    404404                            cycles, suffix, t->refcount,
     
    487487        ipc_cleanup();
    488488        futex_cleanup();
    489         klog_printf("Cleanup of task %lld completed.", TASK->taskid);
     489        klog_printf("Cleanup of task %llu completed.", TASK->taskid);
    490490}
    491491
Note: See TracChangeset for help on using the changeset viewer.