diff options
Diffstat (limited to 'libhw/host_sigrt.c')
-rw-r--r-- | libhw/host_sigrt.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libhw/host_sigrt.c b/libhw/host_sigrt.c deleted file mode 100644 index 6dcb963..0000000 --- a/libhw/host_sigrt.c +++ /dev/null @@ -1,21 +0,0 @@ -/* libhw/host_sigrt.c - Manage glibc realtime signals - * - * 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_sigrt.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; -} |