Subversion Repositories HelenOS-historic

Rev

Rev 1468 | Rev 1579 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1468 Rev 1573
Line 227... Line 227...
227
            int j;
227
            int j;
228
 
228
 
229
            t = (task_t *) node->value[i];
229
            t = (task_t *) node->value[i];
230
       
230
       
231
            spinlock_lock(&t->lock);
231
            spinlock_lock(&t->lock);
232
            printf("%s: address=%#zX, taskid=%#llX, as=%#zX, ActiveCalls: %zd",
232
            printf("%s(%lld): address=%#zX, as=%#zX, ActiveCalls: %zd",
233
                t->name, t, t->taskid, t->as, atomic_get(&t->active_calls));
233
                t->name, t->taskid, t, t->as, atomic_get(&t->active_calls));
234
            for (j=0; j < IPC_MAX_PHONES; j++) {
234
            for (j=0; j < IPC_MAX_PHONES; j++) {
235
                if (t->phones[j].callee)
235
                if (t->phones[j].callee)
236
                    printf(" Ph(%zd): %#zX ", j, t->phones[j].callee);
236
                    printf(" Ph(%zd): %#zX ", j, t->phones[j].callee);
237
            }
237
            }
238
            printf("\n");
238
            printf("\n");