source: rtems/bsps/arm/gdbarmsim/include/bsp.h @ 820c667

5
Last change on this file since 820c667 was 820c667, checked in by Joel Sherrill <joel@…>, on 03/14/18 at 21:14:07

bsps/arm/gdbarmsim/include/bsp.h: Fix warning

  • Property mode set to 100644
File size: 2.0 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 *
51 * NOTE: Full list possible is included. Not all are available in BSP.
52 */
53int     gdbarmsim_system(const char *);
54int     gdbarmsim_rename(const char *, const char *);
55int     gdbarmsim__isatty(int);
56/* clock_t gdbarmsim_times(struct tms *); */
57int     gdbarmsim_gettimeofday(struct timeval *, void *);
58int     gdbarmsim_unlink(const char *);
59int     gdbarmsim_link(void);
60int     gdbarmsim_stat(const char *, struct stat *);
61int     gdbarmsim_fstat(int, struct stat *);
62int         gdbarmsim_swistat(int fd, struct stat * st);
63int     gdbarmsim_close(int);
64clock_t gdbarmsim_clock(void);
65int     gdbarmsim_swiclose(int);
66int     gdbarmsim_open(const char *, int, ...);
67int     gdbarmsim_swiopen(const char *, int);
68int     gdbarmsim_writec(const char c);
69int     gdbarmsim_write(int, char *, int);
70int     gdbarmsim_swiwrite(int, char *, int);
71int     gdbarmsim_lseek(int, int, int);
72int     gdbarmsim_swilseek(int, int, int);
73int     gdbarmsim_read(int, char *, int);
74int     gdbarmsim_swiread(int, char *, int);
75void    initialise_monitor_handles(void);
76
77/** @} */
78
79#ifdef __cplusplus
80}
81#endif
82
83#endif /* _BSP_H */
84
Note: See TracBrowser for help on using the repository browser.