Changeset 3de6dd7a in mainline for generic/src/proc/thread.c


Ignore:
Timestamp:
2006-05-30T22:23:11Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4fded58
Parents:
8cf8ee6
Message:

Added console support to gxemul.
Wider information in thread list.

File:
1 edited

Legend:

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

    r8cf8ee6 r3de6dd7a  
    432432                                t->name, t, t->tid, thread_states[t->state], t->task, t->thread_code, t->kstack);
    433433                        if (t->cpu)
    434                                 printf("cpu%zd ", t->cpu->id);
     434                                printf("cpu%zd", t->cpu->id);
    435435                        else
    436436                                printf("none");
     437                        if (t->state == Sleeping) {
     438                                printf(", kst=%#zX", t->kstack);
     439                                printf(", wq=%#zX", t->sleep_queue);
     440                        }
    437441                        printf("\n");
    438442                }
Note: See TracChangeset for help on using the changeset viewer.