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


Ignore:
Timestamp:
2006-08-05T16:05:25Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e2882a7
Parents:
b006a2c8
Message:

finish security context isolation

File:
1 edited

Legend:

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

    rb006a2c8 rcfffb290  
    319319        memcpy(t->name, name, THREAD_NAME_BUFLEN);
    320320       
    321         t->context = THE->context;
    322321        t->thread_code = func;
    323322        t->thread_arg = arg;
     
    535534               
    536535                        t = (thread_t *) node->value[i];
    537                         printf("%s: address=%#zx, tid=%zd, context=%ld, state=%s, task=%#zx, code=%#zx, stack=%#zx, cpu=",
    538                                 t->name, t, t->tid, t->context, thread_states[t->state], t->task, t->thread_code, t->kstack);
     536                        printf("%s: address=%#zx, tid=%zd, state=%s, task=%#zx, context=%ld, code=%#zx, stack=%#zx, cpu=",
     537                                t->name, t, t->tid, thread_states[t->state], t->task, t->task->context, t->thread_code, t->kstack);
    539538                        if (t->cpu)
    540539                                printf("cpu%zd", t->cpu->id);
Note: See TracChangeset for help on using the changeset viewer.