Files
rtems/cpukit/libmisc/shell/main_halt.c
Sebastian Huber bac3d6df35 shell: Rename HALT to SHUTDOWN command
Use a normal command for shutdown via exit().
2014-11-20 10:30:24 +01:00

40 lines
1.0 KiB
C

/*
* Halt Command Implementation
*
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <rtems.h>
#include <rtems/shell.h>
#include "internal.h"
static int rtems_shell_main_shutdown(
int argc __attribute__((unused)),
char *argv[] __attribute__((unused))
)
{
fprintf(stdout, "System shutting down at user request\n");
exit(0);
return 0;
}
rtems_shell_cmd_t rtems_shell_SHUTDOWN_Command = {
"shutdown", /* name */
"shutdown", /* usage */
"rtems", /* topic */
rtems_shell_main_shutdown, /* command */
NULL, /* alias */
NULL /* next */
};