We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6619052 commit 76a5294Copy full SHA for 76a5294
src/debug-adapter/webKitDebugAdapter.ts
@@ -358,7 +358,7 @@ export class WebKitDebugAdapter implements DebugProtocol.IDebugAdapter {
358
public disconnect(): Promise<void> {
359
this.clearEverything();
360
if (this._tnsProcess) {
361
- kill(this._tnsProcess.pid, 'SIGINT')
+ kill(this._tnsProcess.pid, 'SIGQUIT')
362
this._tnsProcess = null;
363
}
364
if (this._webKitConnection) {
src/main.ts
@@ -57,7 +57,7 @@ export function activate(context: vscode.ExtensionContext) {
57
});
58
59
context.subscriptions.push({
60
- dispose: () => kill(tnsProcess.pid, "SIGINT")
+ dispose: () => kill(tnsProcess.pid, "SIGQUIT")
61
62
};
63
0 commit comments