| 1588 | } |
| 1589 | |
| 1590 | static void |
| 1591 | breakOnCyclesLimitCB (GtkEntry *entry, |
| 1592 | // gchar *string, |
| 1593 | gpointer user_data) |
| 1594 | { |
| 1595 | const char *txt; |
| 1596 | |
| 1597 | txt = gtk_entry_get_text( entry ); |
| 1598 | |
| 1599 | //printf("'%s'\n", txt ); |
| 1600 | |
| 1601 | if ( isdigit(txt[0]) ) |
| 1602 | { |
| 1603 | break_cycles_limit = strtoul( txt, NULL, 0 ); |
| 1604 | } |
| 1605 | updateAllDebugWindows(); |
| 1606 | } |
| 1607 | |
| 1608 | static void breakOnInstructionsCB( GtkToggleButton *togglebutton, debuggerWin_t * dw) |
| 1609 | { |
nothing calls this directly
no test coverage detected