From 1994c7553b25bc9149bc2c526c785aa23b7cfa5f Mon Sep 17 00:00:00 2001 From: Nils Dijk Date: Tue, 26 Sep 2023 11:47:16 +0000 Subject: [PATCH] dont interrupt gdb on SIGUSR1 --- .devcontainer/.vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.devcontainer/.vscode/launch.json b/.devcontainer/.vscode/launch.json index 00b12ac4f..290f6573a 100644 --- a/.devcontainer/.vscode/launch.json +++ b/.devcontainer/.vscode/launch.json @@ -8,6 +8,13 @@ "processId": "${command:pickProcess}", "program": "/home/citus/.pgenv/pgsql/bin/postgres", "additionalSOLibSearchPath": "/home/citus/.pgenv/pgsql/lib", + "setupCommands": [ + { + "text": "handle SIGUSR1 noprint nostop pass", + "description": "let gdb not stop when SIGUSR1 is sent to process", + "ignoreFailures": true + } + ], }, ] }