aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/main.go b/main.go
index e0ba19b99..b68a24d2e 100644
--- a/main.go
+++ b/main.go
@@ -552,11 +552,7 @@ func FlashGDB(pkgName, target, port string, ocdOutput bool, config *BuildConfig)
}
// Make sure the daemon doesn't receive Ctrl-C that is intended for
// GDB (to break the currently executing program).
- // https://stackoverflow.com/a/35435038/559350
- daemon.SysProcAttr = &syscall.SysProcAttr{
- Setpgid: true,
- Pgid: 0,
- }
+ setCommandAsDaemon(daemon)
// Start now, and kill it on exit.
daemon.Start()
defer func() {