summaryrefslogtreecommitdiffstats
path: root/Source/cmUVSignalHackRAII.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-10-27 23:18:09 (GMT)
committerBrad King <brad.king@kitware.com>2023-11-17 13:49:21 (GMT)
commit6ef03ca03e20c3866ae42448c5c25a6bf57536cb (patch)
tree5b0297a40566756beabc0c2d6a705ecf3f9f49c5 /Source/cmUVSignalHackRAII.h
parent6f8532fbfac3912fcb0e8729d549f2bfb045c64e (diff)
downloadCMake-6ef03ca03e20c3866ae42448c5c25a6bf57536cb.zip
CMake-6ef03ca03e20c3866ae42448c5c25a6bf57536cb.tar.gz
CMake-6ef03ca03e20c3866ae42448c5c25a6bf57536cb.tar.bz2
cmUVSignalHackRAII: Drop outdated and unused libuv SA_RESTART workaround
It is only needed for libuv < 1.19, but since commit c050d6a01e (string(TIMESTAMP): add %f specifier for microseconds, 2022-01-27, v3.23.0-rc1~59^2) we require libuv >= 1.28.
Diffstat (limited to 'Source/cmUVSignalHackRAII.h')
-rw-r--r--Source/cmUVSignalHackRAII.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/Source/cmUVSignalHackRAII.h b/Source/cmUVSignalHackRAII.h
deleted file mode 100644
index 60e4ca8..0000000
--- a/Source/cmUVSignalHackRAII.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
-#pragma once
-#include "cmConfigure.h" // IWYU pragma: keep
-
-#include <cm3p/uv.h>
-
-#if defined(CMAKE_USE_SYSTEM_LIBUV) && !defined(_WIN32) && \
- UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 19
-# define CMAKE_UV_SIGNAL_HACK
-# include "cmUVHandlePtr.h"
-/*
- libuv does not use SA_RESTART on its signal handler, but C++ streams
- depend on it for reliable i/o operations. This RAII helper convinces
- libuv to install its handler, and then revises the handler to add the
- SA_RESTART flag. We use a distinct uv loop that never runs to avoid
- ever really getting a callback. libuv may fill the hack loop's signal
- pipe and then stop writing, but that won't break any real loops.
- */
-class cmUVSignalHackRAII
-{
- uv_loop_t HackLoop;
- cm::uv_signal_ptr HackSignal;
- static void HackCB(uv_signal_t*, int) {}
-
-public:
- cmUVSignalHackRAII()
- {
- uv_loop_init(&this->HackLoop);
- this->HackSignal.init(this->HackLoop);
- this->HackSignal.start(HackCB, SIGCHLD);
- struct sigaction hack_sa;
- sigaction(SIGCHLD, nullptr, &hack_sa);
- if (!(hack_sa.sa_flags & SA_RESTART)) {
- hack_sa.sa_flags |= SA_RESTART;
- sigaction(SIGCHLD, &hack_sa, nullptr);
- }
- }
- ~cmUVSignalHackRAII()
- {
- this->HackSignal.stop();
- uv_loop_close(&this->HackLoop);
- }
-};
-#endif