Changeset dd054bc2 in mainline


Ignore:
Timestamp:
2006-06-11T17:52:21Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8fa86b7
Parents:
43752b6
Message:

Inform the user about the kernel relinquishing the console on continue command.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/console/cmd.c

    r43752b6 rdd054bc2  
    7979static cmd_info_t continue_info = {
    8080        .name = "continue",
    81         .description ="Return console back to userspace",
     81        .description ="Return console back to userspace.",
    8282        .func = cmd_continue,
    8383        .argc = 0
     
    263263static cmd_info_t threads_info = {
    264264        .name = "threads",
    265         .description = "List all threads",
     265        .description = "List all threads.",
    266266        .func = cmd_threads,
    267267        .argc = 0
     
    271271static cmd_info_t tasks_info = {
    272272        .name = "tasks",
    273         .description = "List all tasks",
     273        .description = "List all tasks.",
    274274        .func = cmd_tasks,
    275275        .argc = 0
     
    280280static cmd_info_t sched_info = {
    281281        .name = "scheduler",
    282         .description = "List all scheduler information",
     282        .description = "List all scheduler information.",
    283283        .func = cmd_sched,
    284284        .argc = 0
     
    288288static cmd_info_t slabs_info = {
    289289        .name = "slabs",
    290         .description = "List SLAB caches.",
     290        .description = "List slab caches.",
    291291        .func = cmd_slabs,
    292292        .argc = 0
     
    309309static cmd_info_t ipc_task_info = {
    310310        .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.",
    312312        .func = cmd_ipc_task,
    313313        .argc = 1,
     
    795795int cmd_continue(cmd_arg_t *argv)
    796796{
     797        printf("The kernel will now relinquish the console.\n");
     798        printf("Use userspace controls to redraw the screen.\n");
    797799        arch_release_console();
    798800        return 1;
Note: See TracChangeset for help on using the changeset viewer.