source: rtems/c/src/lib/libbsp/moxie/moxiesim/include/bsp.h @ b51e44ad

4.115
Last change on this file since b51e44ad was b51e44ad, checked in by Joel Sherrill <joel.sherrill@…>, on 03/17/14 at 18:25:48

moxiesim/include/bsp.h: Remove rtems_bsp_delay()

  • Property mode set to 100644
File size: 733 bytes
Line 
1/*  bsp.h
2 *
3 *  This include file contains some definitions specific to the
4 *  moxie simulator in gdb.
5 *
6 *  COPYRIGHT (c) 1989-1999, 2010.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#ifndef _BSP_H
15#define _BSP_H
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21#include <bspopts.h>
22
23#include <rtems.h>
24#include <rtems/iosupp.h>
25#include <rtems/console.h>
26#include <rtems/clockdrv.h>
27
28/* support for simulated clock tick */
29Thread clock_driver_sim_idle_body(uintptr_t);
30#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
31
32#ifdef __cplusplus
33}
34#endif
35
36#endif
Note: See TracBrowser for help on using the repository browser.