bsps: New file <bsp/default-initial-extension.h>

This commit is contained in:
Sebastian Huber
2012-11-07 16:18:39 +01:00
parent 228df42204
commit 38c0b1121f
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
/*
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Obere Lagerstr. 30
* 82178 Puchheim
* Germany
* <rtems@embedded-brains.de>
*
* 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.
*/
#ifndef LIBBSP_SHARED_DEFAULT_INITIAL_EXTENSION_H
#define LIBBSP_SHARED_DEFAULT_INITIAL_EXTENSION_H
#include <rtems.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
void bsp_fatal_extension(
Internal_errors_Source source,
bool is_internal,
Internal_errors_t error
);
#define BSP_INITIAL_EXTENSION \
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL, bsp_fatal_extension }
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* LIBBSP_SHARED_DEFAULT_INITIAL_EXTENSION_H */