source: rtems/c/src/lib/libbsp/sparc64/usiii/include/bsp.h @ 8c4821e

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

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

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains all SPARC64 simulator definitions.
4 *
5 *  COPYRIGHT (c) 1989-1998.
6 *  On-Line Applications Research Corporation (OAR).
7 *  COPYRIGHT (c) 1995.
8 *  European Space Agency.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.org/license/LICENSE.
13 *
14 *  Ported to sun4u version of SPARC64
15 *  sun4u modifications of respective RTEMS file:
16 *    COPYRIGHT (c) 2010.
17 *    Eugen Leontie
18 *    Gedare Bloom
19 */
20
21#ifndef _BSP_H
22#define _BSP_H
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28#include <bspopts.h>
29#include <bsp/default-initial-extension.h>
30
31#include <rtems.h>
32#include <rtems/iosupp.h>
33#include <rtems/console.h>
34#include <rtems/clockdrv.h>
35
36/* support for simulated clock tick */
37/*
38Thread clock_driver_sim_idle_body(uintptr_t);
39#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
40*/
41
42/* this should be defined somewhere */
43rtems_isr_entry set_vector(                     /* returns old vector */
44    rtems_isr_entry     handler,                /* isr routine        */
45    rtems_vector_number vector,                 /* vector number      */
46    int                 type                    /* RTEMS or RAW intr  */
47);
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif
Note: See TracBrowser for help on using the repository browser.