source: rtems/c/src/lib/libbsp/v850/gdbv850sim/include/bsp.h @ d33ab82

5
Last change on this file since d33ab82 was d33ab82, checked in by Joel Sherrill <joel@…>, on 03/30/16 at 19:04:24

v850/gdbv850sim/include/bsp.h: Do not include <rtems/iosupp.h>

  • Property mode set to 100644
File size: 725 bytes
Line 
1/*
2 *  This include file contains some definitions specific to the
3 *  GDB simulator in gdb.
4 */
5
6/*
7 *  COPYRIGHT (c) 1989-2012.
8 *  On-Line Applications Research Corporation (OAR).
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
15#ifndef LIBBSP_V850_GDBV850SIM_BSP_H
16#define LIBBSP_V850_GDBV850SIM_BSP_H
17
18#include <bspopts.h>
19#include <bsp/default-initial-extension.h>
20
21#include <rtems.h>
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27/* support for simulated clock tick */
28void *clock_driver_sim_idle_body(uintptr_t);
29#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
30
31#ifdef __cplusplus
32}
33#endif
34
35#endif
Note: See TracBrowser for help on using the repository browser.