| 515 | |
| 516 | |
| 517 | bool BNDebuggerRunTo(BNDebuggerController* controller, const uint64_t* remoteAddresses, size_t count) |
| 518 | { |
| 519 | std::vector<uint64_t> addresses; |
| 520 | addresses.reserve(count); |
| 521 | for (size_t i = 0; i < count; i++) |
| 522 | { |
| 523 | addresses.push_back(remoteAddresses[i]); |
| 524 | } |
| 525 | return controller->object->RunTo(addresses); |
| 526 | } |
| 527 | |
| 528 | |
| 529 | BNDebugStopReason BNDebuggerGoAndWait(BNDebuggerController* controller) |