2000-12-11 Joel Sherrill <joel@OARcorp.com>

* startup/bspclean.c: New file to explicitly invoke _sys_exit().
	* README: Updated.
This commit is contained in:
Joel Sherrill
2000-12-11 14:31:58 +00:00
parent cd2400187f
commit 3be21e7dd1
2 changed files with 20 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2000-12-11 Joel Sherrill <joel@OARcorp.com>
* startup/bspclean.c: New file to explicitly invoke _sys_exit().
* README: Updated.
2000-12-06 Joel Sherrill <joel@OARcorp.com>
* README: Updated to reflect status.

View File

@@ -0,0 +1,15 @@
/*
* COPYRIGHT (c) 1989-1999.
* 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.OARcorp.com/rtems/license.html.
*
* $Id$
*/
void bsp_cleanup( void )
{
_sys_exit(0);
}