Skip to content

Commit

Permalink
Fix continue leave zombie process on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Apr 11, 2024
1 parent 0f3817b commit 5beaa00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HLAdapter.hx
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ class HLAdapter extends DebugSession {
override function continueRequest(response:ContinueResponse, args:ContinueArguments) {
debug("Continue");
sendResponse(response);
dbg.resume();
safe(() -> handleWait(dbg.run()));
}

override function sourceRequest(response:SourceResponse, args:SourceArguments) {
Expand Down

1 comment on commit 5beaa00

@yuxiaomao
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This cause "Pause" not working well on both Windows and Linux :'(

Please sign in to comment.