Rev 3093 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3093 | Rev 3100 | ||
|---|---|---|---|
| Line 38... | Line 38... | ||
| 38 | #include <sys/types.h> |
38 | #include <sys/types.h> |
| 39 | #include "bstore.h" |
39 | #include "bstore.h" |
| 40 | 40 | ||
| 41 | typedef struct { |
41 | typedef struct { |
| 42 | bstore_t bs; |
42 | bstore_t bs; |
| - | 43 | ||
| - | 44 | int n_next; |
|
| - | 45 | bstore_t next_bs[2]; |
|
| 43 | } breakpoint_arch_t; |
46 | } breakpoint_arch_t; |
| 44 | 47 | ||
| 45 | typedef struct { |
48 | typedef struct { |
| 46 | int singlestep; |
49 | int singlestep; |
| 47 | bstore_t cur, next; |
50 | bstore_t cur; |
| - | 51 | ||
| - | 52 | int n_next; |
|
| - | 53 | bstore_t next[2]; |
|
| 48 | } dthread_arch_t; |
54 | } dthread_arch_t; |
| 49 | 55 | ||
| 50 | typedef struct { |
56 | typedef struct { |
| 51 | uint32_t at; |
57 | uint32_t at; |
| 52 | uint32_t v0; |
58 | uint32_t v0; |