Changes in uspace/app/bdsh/cmds/modules/kcon/kcon.c [79ae36dd:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/kcon/kcon.c
r79ae36dd ra000878c 32 32 #include <stdlib.h> 33 33 #include <io/console.h> 34 #include <vfs/vfs.h> 34 35 #include "config.h" 35 36 #include "util.h" … … 41 42 static const char *cmdname = "kcon"; 42 43 43 /* Disp layhelp for kcon in various levels */44 /* Dispays help for kcon in various levels */ 44 45 void help_cmd_kcon(unsigned int level) 45 46 { 46 47 printf("`kcon' switches to the kernel debug console.\n"); 47 48 if (level != HELP_SHORT) 49 printf("Usage: %s\n", cmdname); 50 48 49 if (level != HELP_SHORT) { 50 printf("Usage: %s\n", cmdname); 51 } 52 51 53 return; 52 54 } … … 55 57 int cmd_kcon(char **argv) 56 58 { 57 unsigned int argc = cli_count_args(argv); 58 59 unsigned int argc; 60 61 argc = cli_count_args(argv); 62 59 63 if (argc != 1) { 60 64 printf("%s - incorrect number of arguments. Try `%s --help'\n", 61 65 cmdname, cmdname); 62 66 return CMD_FAILURE; 63 67 } 64 65 if (console_kcon()) 66 return CMD_SUCCESS; 67 else 68 return CMD_FAILURE; 68 69 console_kcon_enable(fphone(stdout)); 70 71 return CMD_SUCCESS; 69 72 } 73
Note:
See TracChangeset
for help on using the changeset viewer.