MCPcopy Create free account
hub / github.com/Marus/cortex-debug / busyError

Method busyError

src/gdb.ts:3096–3102  ·  view source on GitHub ↗
(response: DebugProtocol.Response, args: any)

Source from the content-addressed store, hash-verified

3094 }
3095
3096 public busyError(response: DebugProtocol.Response, args: any) {
3097 if (this.args.showDevDebugOutput) {
3098 this.handleMsg('log', `Info: Received ${response.command} request while busy. ${JSON.stringify(args)}\n`);
3099 }
3100 response.message = 'notStopped';
3101 this.sendErrorResponse(response, 8, 'Busy', undefined, ErrorDestination.Telemetry);
3102 }
3103
3104 private evaluateQ = new RequestQueue<DebugProtocol.EvaluateResponse, DebugProtocol.EvaluateArguments>();
3105 protected evaluateRequest(r: DebugProtocol.EvaluateResponse, a: DebugProtocol.EvaluateArguments): Promise<void> {

Callers 6

readMemoryRequestMethod · 0.95
writeMemoryRequestMethod · 0.95
evaluateRequestMethod · 0.95
doitMethod · 0.95
evaluateRequestMethod · 0.80
doitMethod · 0.80

Calls 1

handleMsgMethod · 0.95

Tested by

no test coverage detected