lnd.xprv/signal
Olaoluwa Osuntokun 0ca65208c5
signal: don't attempt to catch SIGSTOP
In this commit, we modify the set of default signals we attempt to catch in
order to execute a graceful shutdown. Before this commit, we would attempt
to catch/register for `SIGSTOP`. There're two issues with this

  1. `SIGSTOP` is meant to be used in combination with `SIGCONCT` to allow a
  process to be paused/resumed. Therefore, our action of shutting down once
  received was incorrect.

  2. `SIGSTOP` doesn't exist on windows, so users aren't able to compile on
  this platform without modifying the codebase.
2019-04-03 13:13:03 -07:00
..
log.go multi: init subsystem loggers via build pkg 2018-10-05 13:04:45 +09:00
signal.go signal: don't attempt to catch SIGSTOP 2019-04-03 13:13:03 -07:00