Changeset fdb9c39c in mainline
- Timestamp:
- 2011-01-05T13:58:50Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c4faa0c
- Parents:
- cd22764
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/kill/kill.c
rcd22764 rfdb9c39c 31 31 */ 32 32 /** 33 * @file For ecfully terminate a task.33 * @file Forcefully terminate a task. 34 34 */ 35 35 … … 37 37 #include <stdio.h> 38 38 #include <task.h> 39 #include <str_error.h> 39 40 40 #define NAME "kill"41 #define NAME "kill" 41 42 42 43 static void print_syntax(void) … … 59 60 if (*eptr != '\0') { 60 61 printf("Invalid task ID argument '%s'.\n", argv[1]); 61 return 1;62 return 2; 62 63 } 63 64 64 65 rc = task_kill(taskid); 65 66 if (rc != EOK) { 66 printf("Failed to kill task with ID %llu (error %d)\n",67 (unsigned long long) taskid, rc);68 return 2;67 printf("Failed to kill task ID %" PRIu64 ": %s\n", 68 taskid, str_error(rc)); 69 return 3; 69 70 } 70 71
Note:
See TracChangeset
for help on using the changeset viewer.