Changeset dd054bc2 in mainline
- Timestamp:
- 2006-06-11T17:52:21Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8fa86b7
- Parents:
- 43752b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/console/cmd.c
r43752b6 rdd054bc2 79 79 static cmd_info_t continue_info = { 80 80 .name = "continue", 81 .description ="Return console back to userspace ",81 .description ="Return console back to userspace.", 82 82 .func = cmd_continue, 83 83 .argc = 0 … … 263 263 static cmd_info_t threads_info = { 264 264 .name = "threads", 265 .description = "List all threads ",265 .description = "List all threads.", 266 266 .func = cmd_threads, 267 267 .argc = 0 … … 271 271 static cmd_info_t tasks_info = { 272 272 .name = "tasks", 273 .description = "List all tasks ",273 .description = "List all tasks.", 274 274 .func = cmd_tasks, 275 275 .argc = 0 … … 280 280 static cmd_info_t sched_info = { 281 281 .name = "scheduler", 282 .description = "List all scheduler information ",282 .description = "List all scheduler information.", 283 283 .func = cmd_sched, 284 284 .argc = 0 … … 288 288 static cmd_info_t slabs_info = { 289 289 .name = "slabs", 290 .description = "List SLABcaches.",290 .description = "List slab caches.", 291 291 .func = cmd_slabs, 292 292 .argc = 0 … … 309 309 static cmd_info_t ipc_task_info = { 310 310 .name = "ipc_task", 311 .description = "ipc_task <taskid> Show IPC information of given task ",311 .description = "ipc_task <taskid> Show IPC information of given task.", 312 312 .func = cmd_ipc_task, 313 313 .argc = 1, … … 795 795 int cmd_continue(cmd_arg_t *argv) 796 796 { 797 printf("The kernel will now relinquish the console.\n"); 798 printf("Use userspace controls to redraw the screen.\n"); 797 799 arch_release_console(); 798 800 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.