Rev 1077 | Rev 1221 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1077 | Rev 1196 | ||
|---|---|---|---|
| Line 103... | Line 103... | ||
| 103 | 103 | ||
| 104 | printf("Breakpoint table.\n"); |
104 | printf("Breakpoint table.\n"); |
| 105 | for (i=0; i < BKPOINTS_MAX; i++) |
105 | for (i=0; i < BKPOINTS_MAX; i++) |
| 106 | if (breakpoints[i].address) { |
106 | if (breakpoints[i].address) { |
| 107 | symbol = get_symtab_entry(breakpoints[i].address); |
107 | symbol = get_symtab_entry(breakpoints[i].address); |
| 108 | printf("%d. 0x%p in %s\n",i, |
108 | printf("%d. %p in %s\n",i, |
| 109 | breakpoints[i].address, symbol); |
109 | breakpoints[i].address, symbol); |
| 110 | printf(" Count(%d) ", breakpoints[i].counter); |
110 | printf(" Count(%d) ", breakpoints[i].counter); |
| 111 | printf("\n"); |
111 | printf("\n"); |
| 112 | } |
112 | } |
| 113 | return 1; |
113 | return 1; |