Changeset a35b458 in mainline for uspace/app/bdsh/cmds/modules/kcon/kcon.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/kcon/kcon.c
r3061bc1 ra35b458 43 43 { 44 44 printf("`kcon' switches to the kernel debug console.\n"); 45 45 46 46 if (level != HELP_SHORT) 47 47 printf("Usage: %s\n", cmdname); 48 48 49 49 return; 50 50 } … … 54 54 { 55 55 unsigned int argc = cli_count_args(argv); 56 56 57 57 if (argc != 1) { 58 58 printf("%s - incorrect number of arguments. Try `%s --help'\n", … … 60 60 return CMD_FAILURE; 61 61 } 62 62 63 63 if (console_kcon()) 64 64 return CMD_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.