Rev 2942 | Rev 3008 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2942 | Rev 3005 | ||
---|---|---|---|
Line 38... | Line 38... | ||
38 | #include <udebug.h> |
38 | #include <udebug.h> |
39 | #include <libadt/list.h> |
39 | #include <libadt/list.h> |
40 | 40 | ||
41 | #include "include/arch/types.h" |
41 | #include "include/arch/types.h" |
42 | #include "fib_synch.h" |
42 | #include "fib_synch.h" |
43 | - | ||
44 | typedef struct { |
- | |
45 | int set; |
- | |
46 | unsigned addr; |
- | |
47 | breakpoint_arch_t arch; |
- | |
48 | } breakpoint_t; |
43 | #include "breakpoint.h" |
49 | - | ||
50 | #define MAX_BRKPTS 64 |
- | |
51 | extern breakpoint_t brk_list[MAX_BRKPTS]; |
- | |
52 | 44 | ||
53 | extern int app_phone; |
45 | extern int app_phone; |
54 | extern fcv_t go_cv; |
46 | extern fcv_t go_cv; |
55 | 47 | ||
56 | void breakpoint_hit(void); |
48 | void breakpoint_hit(breakpoint_t *b); |
57 | void singlestep_hit(void); |
49 | void singlestep_hit(void); |
58 | 50 | ||
59 | 51 | ||
60 | #endif |
52 | #endif |
61 | 53 |