Changeset df29f24 in mainline for kernel/generic/src/proc/task.c
- Timestamp:
- 2011-06-01T09:04:08Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0a7627b, c9f0975
- Parents:
- e51a514 (diff), 5d1b3aa (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
re51a514 rdf29f24 190 190 str_cpy(task->name, TASK_NAME_BUFLEN, name); 191 191 192 task->cont ext = CONTEXT;192 task->container = CONTAINER; 193 193 task->capabilities = 0; 194 194 task->ucycles = 0; … … 211 211 212 212 if ((ipc_phone_0) && 213 (cont ext_check(ipc_phone_0->task->context, task->context)))213 (container_check(ipc_phone_0->task->container, task->container))) 214 214 ipc_phone_connect(&task->phones[0], ipc_phone_0); 215 215 … … 584 584 printf("%-8" PRIu64 " %-14s %-5" PRIu32 " %10p %10p" 585 585 " %9" PRIu64 "%c %9" PRIu64 "%c\n", task->taskid, 586 task->name, task->cont ext, task, task->as,586 task->name, task->container, task, task->as, 587 587 ucycles, usuffix, kcycles, ksuffix); 588 588 #endif … … 595 595 else 596 596 printf("%-8" PRIu64 " %-14s %-5" PRIu32 " %18p %18p\n", 597 task->taskid, task->name, task->cont ext, task, task->as);597 task->taskid, task->name, task->container, task, task->as); 598 598 #endif 599 599 … … 625 625 printf("[id ] [threads] [calls] [callee\n"); 626 626 else 627 printf("[id ] [name ] [ct x] [address ] [as ]"627 printf("[id ] [name ] [ctn] [address ] [as ]" 628 628 " [ucycles ] [kcycles ]\n"); 629 629 #endif … … 634 634 " [callee\n"); 635 635 else 636 printf("[id ] [name ] [ct x] [address ]"636 printf("[id ] [name ] [ctn] [address ]" 637 637 " [as ]\n"); 638 638 #endif
Note:
See TracChangeset
for help on using the changeset viewer.