()
| 925 | } |
| 926 | |
| 927 | private sendContinue(): Promise<void> { |
| 928 | return new Promise<void>((resolve) => { |
| 929 | this.continuing = true; |
| 930 | this.miDebugger.sendCommand('exec-continue --all').then((done) => { |
| 931 | resolve(); |
| 932 | }, (e) => { |
| 933 | console.error('Not expecting continue to fail. ' + e); |
| 934 | this.continuing = false; |
| 935 | resolve(); |
| 936 | }); |
| 937 | }); |
| 938 | } |
| 939 | |
| 940 | // When we have a multi-core device, we have to allocate as many ports as needed |
| 941 | // for each core. As of now, we can only debug one core at a time but we have to know |
no test coverage detected