| 696 | } |
| 697 | |
| 698 | void DapSession::handleThreadExited(const int threadId, const QString &groupId) |
| 699 | { |
| 700 | Q_UNUSED(groupId) |
| 701 | dap::ThreadEvent threadEvent; |
| 702 | threadEvent.reason = "exited"; |
| 703 | threadEvent.threadId = threadId; |
| 704 | d->session->send(threadEvent); |
| 705 | Log("--> Server sent thread event to client\n") |
| 706 | } |
| 707 | |
| 708 | void DapSession::handleLibraryLoaded(const dap::ModuleEvent &moduleEvent) |
| 709 | { |