source: rtems/c/src/lib/libbsp/arm/gdbarmsim/include/bsp.h @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 636 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
10#ifndef _BSP_H
11#define _BSP_H
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17#include <bspopts.h>
18
19#include <rtems.h>
20#include <rtems/iosupp.h>
21#include <rtems/console.h>
22#include <rtems/clockdrv.h>
23
24/* support for simulated clock tick */
25Thread clock_driver_sim_idle_body(uintptr_t);
26#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif /* _BSP_H */
33
Note: See TracBrowser for help on using the repository browser.