From f51c923f69f921b8888aff7cd3ab29fc6aea6ab8 Mon Sep 17 00:00:00 2001 From: Thomas Egerer Date: Thu, 7 Aug 2014 18:05:46 +0200 Subject: [PATCH] starter: Don't monitor child if debugger is attached Signed-off-by: Thomas Egerer --- src/starter/invokecharon.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/starter/invokecharon.c b/src/starter/invokecharon.c index d981f6c17c..d40ab8c283 100644 --- a/src/starter/invokecharon.c +++ b/src/starter/invokecharon.c @@ -201,6 +201,11 @@ int starter_start_charon (starter_config_t *cfg, bool no_fork, bool attach_gdb) default: /* father */ _charon_pid = pid; + if (attach_gdb) + { + /* don't monitor pid file if gdb is attached */ + return 0; + } for (i = 0; i < 500 && _charon_pid; i++) { /* wait for charon for a maximum of 500 x 20 ms = 10 s */ -- 2.47.2