aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-07 21:33:23 +0100
committerMattias Andrée <m@maandree.se>2025-03-07 21:33:23 +0100
commitc8b400cee211fd2ff7bcc69c459cda7bedfe8fdc (patch)
treeaed2a22e601c8686307d463fd50195c004323e89 /src/common.h
parentMisc improvements (diff)
downloadredshift-ng-c8b400cee211fd2ff7bcc69c459cda7bedfe8fdc.tar.gz
redshift-ng-c8b400cee211fd2ff7bcc69c459cda7bedfe8fdc.tar.bz2
redshift-ng-c8b400cee211fd2ff7bcc69c459cda7bedfe8fdc.tar.xz
misc minor improvements
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 37f56f0..3548d5c 100644
--- a/src/common.h
+++ b/src/common.h
@@ -78,6 +78,18 @@
#define NEUTRAL_TEMP 6500
+/**
+ * Truncate a value into a bounded range
+ *
+ * @param LO The lower bound
+ * @param X The value to truncated
+ * @param UP The upper bound
+ * @return `X` truncated such that it is at least `LO` and at most `UP`
+ */
+#define CLAMP(LO, X, UP) (((LO) > (X)) ? (LO) : (((X) < (UP)) ? (X) : (UP)))
+
+
+
enum period {
PERIOD_NONE = 0,
PERIOD_DAYTIME,
@@ -301,9 +313,20 @@ void pipeutils_signal(int write_fd);
void pipeutils_handle_signal(int read_fd);
+/**
+ * Set to 1 once the process has received a signal to terminate
+ */
extern volatile sig_atomic_t exiting;
+
+/**
+ * Set to 1 once the process has received a signal to remove its effect
+ */
extern volatile sig_atomic_t disable;
+
+/**
+ * Install signal handlers for the process
+ */
void signals_install_handlers(void);