source: rtems/testsuites/support/src/tmtests_empty_function.c @ 6d8720c4

4.104.115
Last change on this file since 6d8720c4 was 072d2a09, checked in by Joel Sherrill <joel.sherrill@…>, on 05/10/09 at 14:43:44

2009-05-10 Joel Sherrill <joel.sherrill@…>

  • support/src/tmtests_empty_function.c: Fix warnings.
  • Property mode set to 100644
File size: 549 bytes
Line 
1/*
2 *  This file implements an empty function used by the RTEMS Timing Tests
3 *  to set a baseline for loop overhead.
4 *
5 *  COPYRIGHT (c) 1989-2009.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <rtems.h>
16
17rtems_status_code benchmark_timer_empty_function( void );
18
19rtems_status_code benchmark_timer_empty_function( void )
20{
21  return RTEMS_SUCCESSFUL;
22}
Note: See TracBrowser for help on using the repository browser.