Changeset 764c302 in mainline for kernel/generic/src/proc/task.c


Ignore:
Timestamp:
2006-07-28T23:25:10Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c049309
Parents:
42d3be3
Message:

initial security context support

File:
1 edited

Legend:

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

    r42d3be3 r764c302  
    116116        ta->main_thread = NULL;
    117117        ta->refcount = 0;
     118        ta->context = THE->context;
    118119
    119120        ta->capabilities = 0;
     
    356357               
    357358                        spinlock_lock(&t->lock);
    358                         printf("%s(%lld): address=%#zx, as=%#zx, ActiveCalls: %zd",
    359                                 t->name, t->taskid, t, t->as, atomic_get(&t->active_calls));
     359                        printf("%s(%lld): context=%ld, address=%#zx, as=%#zx, ActiveCalls: %zd",
     360                                t->name, t->taskid, t->context, t, t->as, atomic_get(&t->active_calls));
    360361                        for (j=0; j < IPC_MAX_PHONES; j++) {
    361362                                if (t->phones[j].callee)
Note: See TracChangeset for help on using the changeset viewer.