source: rtems/c/src/lib/libbsp/shared/clock_driver_stub.c @ 7be6ad9

4.104.114.84.95
Last change on this file since 7be6ad9 was f05b2ac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 16:01:48

Remove duplicate white lines.

  • Property mode set to 100644
File size: 438 bytes
Line 
1/*
2 *  Instantiate the clock driver shell.
3 *
4 *  Since there is no clock source on the simulator, all we do is
5 *  make sure it will build.
6 *
7 *  $Id$
8 */
9
10#define CLOCK_VECTOR 0
11
12#define Clock_driver_support_at_tick()
13
14#define Clock_driver_support_install_isr( _new, _old ) \
15  do { _old = 0; } while(0)
16
17#define Clock_driver_support_initialize_hardware()
18
19#define Clock_driver_support_shutdown_hardware()
20
21#include "clockdrv_shell.c"
Note: See TracBrowser for help on using the repository browser.