From 64e05c24e22c1adc87cfb2dc1a7f391a59f452f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 3 Aug 2025 12:13:56 +0200 Subject: [PATCH] queue-runner: Add missing signal.h include for SIGINT and kill() --- src/hydra-queue-runner/queue-monitor.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hydra-queue-runner/queue-monitor.cc b/src/hydra-queue-runner/queue-monitor.cc index cce60da9..d6d87e71 100644 --- a/src/hydra-queue-runner/queue-monitor.cc +++ b/src/hydra-queue-runner/queue-monitor.cc @@ -5,6 +5,7 @@ #include #include +#include using namespace nix;