(info: { threadId: number, threadGroupId: string })
| 1762 | } |
| 1763 | |
| 1764 | protected handleThreadCreated(info: { threadId: number, threadGroupId: string }) { |
| 1765 | if (!this.activeThreadIds.has(info.threadId)) { |
| 1766 | if (traceThreads) { |
| 1767 | this.handleMsg('log', `**** Thread created ${info.threadId}\n`); |
| 1768 | } |
| 1769 | this.activeThreadIds.add(info.threadId); |
| 1770 | this.sendEvent(new ThreadEvent('started', info.threadId)); |
| 1771 | } else { |
| 1772 | this.handleMsg('log', `Thread Error: GDB trying to create thread '${info.threadId}' that already exists`); |
| 1773 | } |
| 1774 | } |
| 1775 | |
| 1776 | protected handleThreadExited(info: { threadId: number, threadGroupId: string }) { |
| 1777 | if (traceThreads) { |
no test coverage detected