Changeset 7b63b6b in mainline for kernel/generic/src/proc/thread.c


Ignore:
Timestamp:
2007-07-02T18:37:41Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e70bfa5
Parents:
daa90e8
Message:

Kernel stack address was printed twice.

File:
1 edited

Legend:

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

    rdaa90e8 r7b63b6b  
    587587       
    588588        printf("tid    name       address    state    task       ctx code    "
    589             "   stack      cycles     cpu  kstack     waitqueue\n");
     589            "   stack      cycles     cpu  waitqueue\n");
    590590        printf("------ ---------- ---------- -------- ---------- --- --------"
    591             "-- ---------- ---------- ---- ---------- ----------\n");
     591            "-- ---------- ---------- ---- ---------\n");
    592592
    593593        for (cur = threads_btree.leaf_head.next;
     
    617617                       
    618618                        if (t->state == Sleeping)
    619                                 printf(" %#10zx %#10zx", t->kstack,
    620                                     t->sleep_queue);
     619                                printf(" %#10zx", t->sleep_queue);
    621620                       
    622621                        printf("\n");
Note: See TracChangeset for help on using the changeset viewer.