diff options
author | jade <lix@jade.fyi> | 2024-03-11 11:14:24 -0600 |
---|---|---|
committer | Gerrit Code Review <gerrit@lix> | 2024-03-11 11:14:24 -0600 |
commit | 50c401b4c17a33042d67c8fb5fcd73146e597026 (patch) | |
tree | 71b89a78f04a4a78cafe46798ad297017cb3b37c /src/nix | |
parent | 6432bf919750616107b4954bc118fb4571fa9a1d (diff) | |
parent | 8be7030299699edd3732411d8d97f237a67fbc08 (diff) |
Merge "util.hh: split out signals stuff" into main
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/daemon.cc | 1 | ||||
-rw-r--r-- | src/nix/optimise-store.cc | 1 | ||||
-rw-r--r-- | src/nix/sigs.cc | 1 | ||||
-rw-r--r-- | src/nix/verify.cc | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/nix/daemon.cc b/src/nix/daemon.cc index f2eea2cf4..42ce3b996 100644 --- a/src/nix/daemon.cc +++ b/src/nix/daemon.cc @@ -12,6 +12,7 @@ #include "derivations.hh" #include "finally.hh" #include "legacy.hh" +#include "signals.hh" #include "daemon.hh" #include <algorithm> diff --git a/src/nix/optimise-store.cc b/src/nix/optimise-store.cc index 985006e5a..6d7d928bd 100644 --- a/src/nix/optimise-store.cc +++ b/src/nix/optimise-store.cc @@ -1,5 +1,6 @@ #include "command.hh" #include "shared.hh" +#include "signals.hh" #include "store-api.hh" #include <atomic> diff --git a/src/nix/sigs.cc b/src/nix/sigs.cc index 45cd2e1a6..730aa6532 100644 --- a/src/nix/sigs.cc +++ b/src/nix/sigs.cc @@ -2,6 +2,7 @@ #include "shared.hh" #include "store-api.hh" #include "thread-pool.hh" +#include "signals.hh" #include <atomic> diff --git a/src/nix/verify.cc b/src/nix/verify.cc index 0b306cc11..9be4c25dc 100644 --- a/src/nix/verify.cc +++ b/src/nix/verify.cc @@ -3,6 +3,7 @@ #include "store-api.hh" #include "sync.hh" #include "thread-pool.hh" +#include "signals.hh" #include "references.hh" #include <atomic> |