RTEMS  5.0.0
bsp.h
Go to the documentation of this file.
1 
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 
31 #include <bspopts.h>
33 
34 #include <rtems.h>
35 
36 #include <sys/stat.h>
37 
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41 
42 //#define BSP_GET_WORK_AREA_DEBUG 1
43 
47 void *clock_driver_sim_idle_body(uintptr_t);
48 #define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
49 
50 /*
51  * Access to the GDB simulator.
52  *
53  * NOTE: Full list possible is included. Not all are available in BSP.
54  */
55 int gdbarmsim_system(const char *);
56 int gdbarmsim_rename(const char *, const char *);
57 int gdbarmsim__isatty(int);
58 /* clock_t gdbarmsim_times(struct tms *); */
59 int gdbarmsim_gettimeofday(struct timeval *, void *);
60 int gdbarmsim_unlink(const char *);
61 int gdbarmsim_link(void);
62 int gdbarmsim_stat(const char *, struct stat *);
63 int gdbarmsim_fstat(int, struct stat *);
64 int gdbarmsim_swistat(int fd, struct stat * st);
65 int gdbarmsim_close(int);
66 clock_t gdbarmsim_clock(void);
67 int gdbarmsim_swiclose(int);
68 int gdbarmsim_open(const char *, int, ...);
69 int gdbarmsim_swiopen(const char *, int);
70 int gdbarmsim_writec(const char c);
71 int gdbarmsim_write(int, char *, int);
72 int gdbarmsim_swiwrite(int, char *, int);
73 int gdbarmsim_lseek(int, int, int);
74 int gdbarmsim_swilseek(int, int, int);
75 int gdbarmsim_read(int, char *, int);
76 int gdbarmsim_swiread(int, char *, int);
77 void initialise_monitor_handles(void);
78 
79 
80 #ifdef __cplusplus
81 }
82 #endif
83 
86 #endif /* _BSP_H */
87 
DEFAULT_INITIAL_EXTENSION Support.
void * clock_driver_sim_idle_body(uintptr_t)
Support for simulated clock tick.
Definition: clock-simidle.c:35