source: rtems/c/src/lib/libbsp/arm/gdbarmsim/include/bsp.h @ 734d62e5

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

arm/gdbarmsim/include/bsp.h: Do not include <rtems/iosupp.h>

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup arm_gdbarmsim
5 *
6 * @brief Global BSP definitions.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2009.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef LIBBSP_ARM_GDBARMSIM_BSP_H
19#define LIBBSP_ARM_GDBARMSIM_BSP_H
20
21#include <bspopts.h>
22#include <bsp/default-initial-extension.h>
23
24#include <rtems.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/**
31 * @defgroup arm_gdbarmsim GDBARMSIM Support
32 *
33 * @ingroup bsp_arm
34 *
35 * @brief GDBARMSIM support package.
36 *
37 * @{
38 */
39
40//#define BSP_GET_WORK_AREA_DEBUG 1
41
42/**
43 * @brief Support for simulated clock tick
44 */
45void *clock_driver_sim_idle_body(uintptr_t);
46#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
47
48/*
49 * Access to the GDB simulator.
50 */
51int     gdbarmsim_system(const char *);
52int     gdbarmsim_rename(const char *, const char *);
53int     gdbarmsim__isatty(int);
54clock_t gdbarmsim_times(struct tms *);
55int     gdbarmsim_gettimeofday(struct timeval *, void *);
56int     gdbarmsim_unlink(const char *);
57int     gdbarmsim_link(void);
58int     gdbarmsim_stat(const char *, struct stat *);
59int     gdbarmsim_fstat(int, struct stat *);
60int         gdbarmsim_swistat(int fd, struct stat * st);
61int     gdbarmsim_close(int);
62clock_t gdbarmsim_clock(void);
63int     gdbarmsim_swiclose(int);
64int     gdbarmsim_open(const char *, int, ...);
65int     gdbarmsim_swiopen(const char *, int);
66int     gdbarmsim_writec(const char c);
67int     gdbarmsim_write(int, char *, int);
68int     gdbarmsim_swiwrite(int, char *, int);
69int     gdbarmsim_lseek(int, int, int);
70int     gdbarmsim_swilseek(int, int, int);
71int     gdbarmsim_read(int, char *, int);
72int     gdbarmsim_swiread(int, char *, int);
73void    initialise_monitor_handles(void);
74
75/** @} */
76
77#ifdef __cplusplus
78}
79#endif
80
81#endif /* _BSP_H */
82
Note: See TracBrowser for help on using the repository browser.