forked from Imagelibrary/rtems
32 lines
647 B
C
32 lines
647 B
C
/*
|
|
* This file implements an empty function used by the RTEMS Timing Tests
|
|
* to set a baseline for loop overhead.
|
|
*
|
|
* COPYRIGHT (c) 1989-2009.
|
|
* 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.org/license/LICENSE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems.h>
|
|
|
|
#include "tmtests_empty_function.h"
|
|
|
|
rtems_status_code benchmark_timer_empty_function( void )
|
|
{
|
|
return RTEMS_SUCCESSFUL;
|
|
}
|
|
|
|
void benchmark_timer_empty_operation(
|
|
int iteration,
|
|
void *argument
|
|
)
|
|
{
|
|
}
|