Maksim Nesterenko
Maksim Nesterenko

Reputation: 6233

WebStorm - debugger terminates a process on breakpoints. Process finished with exit code -1073741510

Today, my WebStorm started to behave weird. When I stop it on breakpoint - process falls. It occurs at any breakpoint. I work with nodejs javascript.

I tried to record gif, but quality is very bad (sorry for that), however, you can imagine the problem if you look at the gif.
Process interrupted after breakpoint
As you can see here: debugger caught a breakpoint, but then, process just stopped. At the bottom of the webstorm it is written: "Process finished with exit code -1073741510 (0xC000013A: interrupted by Ctrl+C)".

Everything worked perfectly yesterday, what can be wrong?

Upvotes: 6

Views: 5042

Answers (2)

Kimball Robinson
Kimball Robinson

Reputation: 3388

Things I tried (the last thing worked, naturally)

  • Deleting all breakpoints
  • Deleting all watchers
  • restarting
  • removing a console.log statement I had added (seemed to addle the debugger)

Upvotes: 0

Maksim Nesterenko
Maksim Nesterenko

Reputation: 6233

Problem occurs because of one of the old watched expressions. I just deleted them all and now debugger works again.

Upvotes: 12

Related Questions