Subversion Repositories HelenOS-historic

Rev

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

Rev 1185 Rev 1196
Line 210... Line 210...
210
            int j;
210
            int j;
211
 
211
 
212
            t = (task_t *) node->value[i];
212
            t = (task_t *) node->value[i];
213
       
213
       
214
            spinlock_lock(&t->lock);
214
            spinlock_lock(&t->lock);
215
            printf("%s: address=%P, taskid=%Q, as=%P, ActiveCalls: %d",
215
            printf("%s: address=%#zX, taskid=%#llX, as=%#zX, ActiveCalls: %zd",
216
                t->name, t, t->taskid, t->as, atomic_get(&t->active_calls));
216
                t->name, t, t->taskid, t->as, atomic_get(&t->active_calls));
217
            for (j=0; j < IPC_MAX_PHONES; j++) {
217
            for (j=0; j < IPC_MAX_PHONES; j++) {
218
                if (t->phones[j].callee)
218
                if (t->phones[j].callee)
219
                    printf(" Ph(%d): %P ", j, t->phones[j].callee);
219
                    printf(" Ph(%zd): %#zX ", j, t->phones[j].callee);
220
            }
220
            }
221
            printf("\n");
221
            printf("\n");
222
            spinlock_unlock(&t->lock);
222
            spinlock_unlock(&t->lock);
223
        }
223
        }
224
    }
224
    }