aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/signals.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil/signals.hh')
-rw-r--r--src/libutil/signals.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libutil/signals.hh b/src/libutil/signals.hh
index 02f8d2ca3..538ff94b4 100644
--- a/src/libutil/signals.hh
+++ b/src/libutil/signals.hh
@@ -16,10 +16,13 @@ namespace nix {
/* User interruption. */
+class Interrupted;
+
extern std::atomic<bool> _isInterrupted;
extern thread_local std::function<bool()> interruptCheck;
+Interrupted makeInterrupted();
void _interrupted();
void inline checkInterrupt()