Rev 2937 | Rev 2942 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2937 | Rev 2938 | ||
---|---|---|---|
Line 34... | Line 34... | ||
34 | 34 | ||
35 | #ifndef MAIN_H_ |
35 | #ifndef MAIN_H_ |
36 | #define MAIN_H_ |
36 | #define MAIN_H_ |
37 | 37 | ||
38 | #include <udebug.h> |
38 | #include <udebug.h> |
- | 39 | #include <libadt/list.h> |
|
39 | 40 | ||
40 | #include "include/arch/types.h" |
41 | #include "include/arch/types.h" |
41 | #include "fib_synch.h" |
42 | #include "fib_synch.h" |
42 | 43 | ||
43 | typedef struct { |
44 | typedef struct { |
Line 50... | Line 51... | ||
50 | extern breakpoint_t brk_list[MAX_BRKPTS]; |
51 | extern breakpoint_t brk_list[MAX_BRKPTS]; |
51 | 52 | ||
52 | extern int app_phone; |
53 | extern int app_phone; |
53 | extern fcv_t go_cv; |
54 | extern fcv_t go_cv; |
54 | 55 | ||
55 | extern thash_t thread_hash[]; |
- | |
56 | extern int thread_id[]; |
- | |
57 | extern unsigned n_threads; |
- | |
58 | extern int cwt; |
- | |
59 | - | ||
60 | void breakpoint_hit(void); |
56 | void breakpoint_hit(void); |
61 | 57 | ||
62 | 58 | ||
63 | #endif |
59 | #endif |
64 | 60 |