Example #1
0
void _BSP_Fatal_error(unsigned int v)
{
  RTEMS_UNUSED rtems_interrupt_level level;

  rtems_interrupt_disable(level);

  printk("\n%s FATAL ERROR %x\n", rtems_get_version_string(), v);

  BSP_ask_for_reset();
}
Example #2
0
void BSP_panic(char *s)
{
  RTEMS_UNUSED rtems_interrupt_level level;

  rtems_interrupt_disable(level);

  printk("\n%s PANIC %s\n", rtems_get_version_string(), s);

  BSP_ask_for_reset();
}
Example #3
0
void _BSP_Fatal_error(unsigned int v)
{
  __attribute__((unused)) rtems_interrupt_level level;

  rtems_interrupt_disable(level);

  printk("\n%s FATAL ERROR %x\n", rtems_get_version_string(), v);

  BSP_ask_for_reset();
}
Example #4
0
void BSP_panic(char *s)
{
  __attribute__((unused)) rtems_interrupt_level level;

  rtems_interrupt_disable(level);

  printk("\n%s PANIC %s\n", rtems_get_version_string(), s);

  BSP_ask_for_reset();
}
Example #5
0
void bsp_fatal_extension(
  rtems_fatal_source source,
  bool is_internal,
  rtems_fatal_code error
)
{
  if ( source == RTEMS_FATAL_SOURCE_EXIT ) {
    app_bsp_cleanup();
  }

  /* All done.  Hang out. */
  BSP_ask_for_reset();
}
Example #6
0
void _BSP_Fatal_error(unsigned int v)
{
  printk("\n%s FATAL ERROR %x\n", _RTEMS_version, v);
  BSP_ask_for_reset();
}
Example #7
0
void BSP_panic(char *s)
{
  printk("\n%s PANIC %s\n", _RTEMS_version, s);
  BSP_ask_for_reset();
}