Skip to content

Commit 76a5294

Browse files
committed
Use SIGQUIT
1 parent 6619052 commit 76a5294

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/debug-adapter/webKitDebugAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ export class WebKitDebugAdapter implements DebugProtocol.IDebugAdapter {
358358
public disconnect(): Promise<void> {
359359
this.clearEverything();
360360
if (this._tnsProcess) {
361-
kill(this._tnsProcess.pid, 'SIGINT')
361+
kill(this._tnsProcess.pid, 'SIGQUIT')
362362
this._tnsProcess = null;
363363
}
364364
if (this._webKitConnection) {

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function activate(context: vscode.ExtensionContext) {
5757
});
5858

5959
context.subscriptions.push({
60-
dispose: () => kill(tnsProcess.pid, "SIGINT")
60+
dispose: () => kill(tnsProcess.pid, "SIGQUIT")
6161
});
6262
};
6363

0 commit comments

Comments
 (0)