| 2562 | } |
| 2563 | |
| 2564 | void fxSelect(txMachine* the, txSlot* slot) |
| 2565 | { |
| 2566 | txSlot* frame = the->frame; |
| 2567 | while (frame) { |
| 2568 | if (frame == slot) |
| 2569 | frame->flag |= XS_DEBUG_FLAG; |
| 2570 | else |
| 2571 | frame->flag &= ~XS_DEBUG_FLAG; |
| 2572 | frame = frame->next; |
| 2573 | } |
| 2574 | } |
| 2575 | |
| 2576 | void fxSetBreakpoint(txMachine* the, txString thePath, txInteger theLine, size_t theID) |
| 2577 | { |