Changeset 8565a42 in mainline for uspace/app/taskdump/taskdump.c
- Timestamp:
- 2018-03-02T20:34:50Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1a81f69, d5e5fd1
- Parents:
- 3061bc1 (diff), 34e1206 (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. - git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
- git-committer:
- GitHub <noreply@…> (2018-03-02 20:34:50)
- File:
-
- 1 edited
-
uspace/app/taskdump/taskdump.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskdump/taskdump.c
r3061bc1 r8565a42 126 126 { 127 127 async_sess_t *ksess = async_connect_kbox(task_id); 128 128 129 129 if (!ksess) { 130 130 if (errno == ENOTSUP) { … … 135 135 return errno; 136 136 } 137 137 138 138 printf("Error connecting\n"); 139 139 printf("async_connect_kbox(%" PRIu64 ") -> %s", task_id, str_error_name(errno)); 140 140 return errno; 141 141 } 142 142 143 143 errno_t rc = udebug_begin(ksess); 144 144 if (rc != EOK) { … … 146 146 return rc; 147 147 } 148 148 149 149 sess = ksess; 150 150 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.
