forked from Imagelibrary/rtems
* Makefile.am, console/debugio.c: Split out bspstart contents. Use shared stub for bsp_start. * startup/bsppretaskinghook.c: New file. * startup/bspstart.c: Removed.
20 lines
386 B
C
20 lines
386 B
C
/*
|
|
* 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.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <bsp.h>
|
|
|
|
extern void bsp_spurious_initialize();
|
|
|
|
void bsp_pretasking_hook(void)
|
|
{
|
|
bsp_spurious_initialize();
|
|
}
|