summaryrefslogtreecommitdiff
path: root/libhw_cr/host_util.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-26 22:18:47 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-26 22:18:47 -0600
commit6ab74d74ee6dc1663b66d0a9a0471f63ade5659a (patch)
treeb579303cc5df38191ee9e8ad63793fbe4c867c02 /libhw_cr/host_util.c
parent9f2e2e96321f14da97adda618a7e4721cbb9791c (diff)
parent865bb702f828784a0225b5eae9ed8803094140d5 (diff)
Merge branch 'lukeshu/9p-read-iovec'
Diffstat (limited to 'libhw_cr/host_util.c')
-rw-r--r--libhw_cr/host_util.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/libhw_cr/host_util.c b/libhw_cr/host_util.c
new file mode 100644
index 0000000..958ed9c
--- /dev/null
+++ b/libhw_cr/host_util.c
@@ -0,0 +1,21 @@
+/* libhw_cr/host_util.c - Utilities for GNU/Linux hosts
+ *
+ * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+#include <error.h> /* for error(3gnu) */
+#include <signal.h> /* for SIGRTMIN, SIGRTMAX */
+
+#include "host_util.h"
+
+int host_sigrt_alloc(void) {
+ static int next = 0;
+
+ if (!next)
+ next = SIGRTMIN;
+ int ret = next++;
+ if (ret > SIGRTMAX)
+ error(1, 0, "SIGRTMAX exceeded");
+ return ret;
+}