source: rtems/c/src/lib/libbsp/arm/gdbarmsim/include/bsp.h @ 44bb5cd0

4.104.115
Last change on this file since 44bb5cd0 was 44bb5cd0, checked in by Joel Sherrill <joel.sherrill@…>, on 10/01/09 at 21:48:42

2009-10-01 Joel Sherrill <joel.sherrill@…>

  • .cvsignore, ChangeLog?, Makefile.am, bsp_specs, configure.ac, preinstall.am, console/.cvsignore, console/console-io.c, include/.cvsignore, include/bsp.h, include/irq.h, include/swi.h, start/.cvsignore, start/start.S, startup/.cvsignore, startup/bspreset.c, startup/bspstart.c, startup/linkcmds, startup/syscalls.c: New files.
  • Property mode set to 100644
File size: 648 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2009.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#ifndef _BSP_H
13#define _BSP_H
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19#include <bspopts.h>
20
21#include <rtems.h>
22#include <rtems/iosupp.h>
23#include <rtems/console.h>
24#include <rtems/clockdrv.h>
25
26/* support for simulated clock tick */
27Thread clock_driver_sim_idle_body(uintptr_t);
28#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
29
30#ifdef __cplusplus
31}
32#endif
33
34#endif /* _BSP_H */
35
Note: See TracBrowser for help on using the repository browser.