Rev 1702 | Rev 1757 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1702 | Rev 1735 | ||
|---|---|---|---|
| Line 353... | Line 353... | ||
| 353 | int j; |
353 | int j; |
| 354 | 354 | ||
| 355 | t = (task_t *) node->value[i]; |
355 | t = (task_t *) node->value[i]; |
| 356 | 356 | ||
| 357 | spinlock_lock(&t->lock); |
357 | spinlock_lock(&t->lock); |
| 358 | printf("%s(%lld): address=%#zX, as=%#zX, ActiveCalls: %zd", |
358 | printf("%s(%lld): address=%#zx, as=%#zx, ActiveCalls: %zd", |
| 359 | t->name, t->taskid, t, t->as, atomic_get(&t->active_calls)); |
359 | t->name, t->taskid, t, t->as, atomic_get(&t->active_calls)); |
| 360 | for (j=0; j < IPC_MAX_PHONES; j++) { |
360 | for (j=0; j < IPC_MAX_PHONES; j++) { |
| 361 | if (t->phones[j].callee) |
361 | if (t->phones[j].callee) |
| 362 | printf(" Ph(%zd): %#zX ", j, t->phones[j].callee); |
362 | printf(" Ph(%zd): %#zx ", j, t->phones[j].callee); |
| 363 | } |
363 | } |
| 364 | printf("\n"); |
364 | printf("\n"); |
| 365 | spinlock_unlock(&t->lock); |
365 | spinlock_unlock(&t->lock); |
| 366 | } |
366 | } |
| 367 | } |
367 | } |