From: David Disseldorp Date: Tue, 1 Sep 2020 11:49:21 +0000 (+0200) Subject: cmake: detect and use sigdescr_np() if available X-Git-Tag: v14.2.17~73^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38952%2Fhead;p=ceph.git cmake: detect and use sigdescr_np() if available sys_siglist is deprecated with glibc 2.32. A new thread-safe and async-signal safe sigdescr_np() function is provided, so use it if available. Fixes: https://tracker.ceph.com/issues/47187 Signed-off-by: David Disseldorp (cherry picked from commit b9b6faf66ae67648626470cb4fc3f0850ac4d842) Conflicts: CMakeLists.txt cmake/modules/CephChecks.cmake - CephChecks.cmake file does not exist in nautilus; manually cherry-picked the change in that file to top-level CMakeLists.txt --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b7a67bec6028..bdeea6f9c7dea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,6 +105,7 @@ CHECK_FUNCTION_EXISTS(strerror_r HAVE_Strerror_R) CHECK_FUNCTION_EXISTS(name_to_handle_at HAVE_NAME_TO_HANDLE_AT) CHECK_FUNCTION_EXISTS(pipe2 HAVE_PIPE2) CHECK_FUNCTION_EXISTS(accept4 HAVE_ACCEPT4) +CHECK_FUNCTION_EXISTS(sigdescr_np HAVE_SIGDESCR_NP) include(CMakePushCheckState) cmake_push_check_state(RESET) diff --git a/src/global/signal_handler.h b/src/global/signal_handler.h index 476724201aa99..c101b2e28733c 100644 --- a/src/global/signal_handler.h +++ b/src/global/signal_handler.h @@ -20,10 +20,12 @@ typedef void (*signal_handler_t)(int); -#ifndef HAVE_REENTRANT_STRSIGNAL -# define sig_str(signum) sys_siglist[signum] -#else +#ifdef HAVE_SIGDESCR_NP +# define sig_str(signum) sigdescr_np(signum) +#elif HAVE_REENTRANT_STRSIGNAL # define sig_str(signum) strsignal(signum) +#else +# define sig_str(signum) sys_siglist[signum] #endif void install_sighandler(int signum, signal_handler_t handler, int flags); diff --git a/src/include/config-h.in.cmake b/src/include/config-h.in.cmake index ccce8fe001705..acced696e3681 100644 --- a/src/include/config-h.in.cmake +++ b/src/include/config-h.in.cmake @@ -235,6 +235,9 @@ /* Define to 1 if you have sched.h. */ #cmakedefine HAVE_SCHED 1 +/* Define to 1 if you have sigdescr_np. */ +#cmakedefine HAVE_SIGDESCR_NP 1 + /* Support SSE (Streaming SIMD Extensions) instructions */ #cmakedefine HAVE_SSE