Revert "Kill processes immediately on shutdown, use SIGTERM"

This reverts commit 95c0e0728b.
This commit is contained in:
Benjamin Pasero
2018-08-28 06:32:49 +02:00
parent ba7f67ae86
commit 1f7ce42122
10 changed files with 27 additions and 50 deletions

View File

@@ -878,7 +878,7 @@ export interface ExtHostTerminalServiceShape {
$createProcess(id: number, shellLaunchConfig: ShellLaunchConfigDto, cols: number, rows: number): void;
$acceptProcessInput(id: number, data: string): void;
$acceptProcessResize(id: number, cols: number, rows: number): void;
$acceptProcessShutdown(id: number, immediate: boolean): void;
$acceptProcessShutdown(id: number): void;
}
export interface ExtHostSCMShape {