logger: Add param name for datum_logger_hup_signal
Some checks are pending
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], almalinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], amazonlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], archlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], clearlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], debian:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], debian:oldstable) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], debian:stable) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], fedora:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], oraclelinux:9) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], ubuntu:22.04) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=OFF], ubuntu:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], almalinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], amazonlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], archlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], clearlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], debian:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], debian:stable) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], fedora:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], oraclelinux:9) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], ubuntu:22.04) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=clang], ubuntu:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], almalinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], amazonlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], archlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], clearlinux:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], debian:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], debian:oldstable) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], debian:stable) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], fedora:latest) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], oraclelinux:9) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], ubuntu:22.04) (push) Waiting to run
Build DATUM Gateway / build (map[cmake_args:-DENABLE_API=ON -DCMAKE_C_COMPILER=gcc], ubuntu:latest) (push) Waiting to run

Needed to make some old C11 compilers happy (eg, Debian oldstable's GCC 10.2)
This commit is contained in:
Luke Dashjr 2025-05-02 02:09:23 +00:00
parent af88c6e68b
commit 32ef803a2c
No known key found for this signature in database
GPG Key ID: A291A2C45D0C504A

View File

@ -451,7 +451,7 @@ void * datum_logger_thread(void *ptr) {
return NULL;
}
void datum_logger_hup_signal(int) {
void datum_logger_hup_signal(int signum) {
log_reopen_signal = true;
}