Changeset e07fe0c in mainline for generic/src/console/cmd.c
- Timestamp:
- 2005-12-12T17:23:09Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fbe058f
- Parents:
- ebbdb8f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/console/cmd.c
rebbdb8f re07fe0c 59 59 }; 60 60 61 static cmd_info_t exit_info = { 62 .name = "exit", 63 .description ="Exit kconsole", 64 .argc = 0 65 }; 66 61 67 /** Data and methods for 'description' command. */ 62 68 static int cmd_desc(cmd_arg_t *argv); … … 257 263 if (!cmd_register(&desc_info)) 258 264 panic("could not register command %s\n", desc_info.name); 265 266 cmd_initialize(&exit_info); 267 if (!cmd_register(&exit_info)) 268 panic("could not register command %s\n", exit_info.name); 259 269 260 270 cmd_initialize(&symaddr_info);
Note:
See TracChangeset
for help on using the changeset viewer.