Ignore:
Timestamp:
Aug 4, 2015, 11:21:24 AM (9 years ago)
Author:
alain
Message:

Introduce the ps command in shell.
Adapt the router application.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/shell/main.c

    r672 r687  
    245245        giet_tty_printf("\n  error : %s cannot be killed\n", argv[0] );
    246246    }
     247}
     248
     249///////////////////////////////////////////////
     250static void cmd_ps(int argc, char** argv)
     251{
     252    giet_tasks_status();
    247253}
    248254
     
    260266    { "exec",       cmd_exec },
    261267    { "kill",       cmd_kill },
     268    { "ps",         cmd_ps },
    262269    { NULL,         NULL }
    263270};
Note: See TracChangeset for help on using the changeset viewer.