summaryrefslogblamecommitdiffstats
path: root/tools/schedsim/shell/shared/main_heir.c
blob: a2a6e198ceb1787de7133d4119ba0a4fabccfd31 (plain) (tree)









































                                                           
/*
 *  Thread Heir Shell Command Implmentation
 *
 *  COPYRIGHT (c) 1989-2010.
 *  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.com/license/LICENSE.
 *
 *  $Id$
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdio.h>

#include <rtems.h>
#include "shell.h"
#include <rtems/stringto.h>
#include <schedsim_shell.h>
#include <rtems/error.h>

int rtems_shell_main_heir(
  int   argc,
  char *argv[]
)
{
  PRINT_HEIR();
  return 0;
}

rtems_shell_cmd_t rtems_shell_TASK_HEIR_Command = {
  "heir",                 /* name */
  "heir",                 /* usage */
  "rtems",                /* topic */
  rtems_shell_main_heir,  /* command */
  NULL,                   /* alias */
  NULL                    /* next */
};