2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>

* support/src/tmtests_empty_function.c: New file.
This commit is contained in:
Joel Sherrill
2008-08-31 17:37:39 +00:00
parent 39c1a1afdc
commit 35eb543d87
2 changed files with 24 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* support/src/tmtests_empty_function.c: New file.
2008-07-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/rtems-top.m4: Require AC_DISABLE_OPTION_CHECKING.

View File

@@ -0,0 +1,20 @@
/*
* This file implements an empty function used by the RTEMS Timing Tests
* to set a baseline for loop overhead.
*
* 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 <rtems.h>
rtems_status_code benchmark_timer_empty_function( void )
{
return RTEMS_SUCCESSFUL;
}