source: rtems/testsuites/sptests/spclock_err01/delay.c @ d4edbdbc

4.115
Last change on this file since d4edbdbc was d4edbdbc, checked in by Sebastian Huber <sebastian.huber@…>, on 03/20/15 at 13:09:26

Replace www.rtems.com with www.rtems.org

  • Property mode set to 100644
File size: 618 bytes
Line 
1/*  Delayed_routine
2 *
3 *  This routine is used as the timer routine for Timer Manager tests.
4 *
5 *  Input parameters:
6 *    ignored - this parameter is ignored
7 *
8 *  Output parameters:  NONE
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifdef HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include "system.h"
23
24rtems_timer_service_routine Delayed_routine(
25  rtems_id  ignored_id,
26  void     *ignored_address
27)
28{
29}
Note: See TracBrowser for help on using the repository browser.