| 551 | |
| 552 | |
| 553 | BNDebugStopReason BNDebuggerRunToAndWait( |
| 554 | BNDebuggerController* controller, const uint64_t* remoteAddresses, size_t count) |
| 555 | { |
| 556 | std::vector<uint64_t> addresses; |
| 557 | addresses.reserve(count); |
| 558 | for (size_t i = 0; i < count; i++) |
| 559 | { |
| 560 | addresses.push_back(remoteAddresses[i]); |
| 561 | } |
| 562 | return controller->object->RunToAndWait(addresses); |
| 563 | } |
| 564 | |
| 565 | |
| 566 | DebugStopReason BNDebuggerPauseAndWait(BNDebuggerController* controller) |
no test coverage detected