在我的类的成员函数之一(可以被多个线程访问)中,我创建了一个单独的线程来压缩巨大的日志文件(〜1GB)。
void Log::log (std::string message)
{
// Lock using mutex
std::lock_guard<std::mutex> lck(mtx);
_outputFile << message << std::endl;
_outputFile.flush();
_sequence_number++;
_curr_file_size = _outputFile.tellp();
if (_curr_file_size >= max_size) {
// Code to close the file stream, rename the file, and reopen
...
// Create an independent thread to compress the file since
// it takes some time to compress huge files.
if (!_log_compression_on)
{
std::thread(&Log::rotate_log, this, _logfile, _max_files, _compress).detach();
}
}
}
我不希望这个新线程接收SIGTERM,SIGHUP等信号,因为主进程已经安装了这些信号的处理程序。
我想知道如何阻止新创建的std :: thread中的某些信号。
void rotate_log (std::string logfile, uint32_t max_files, bool compress)
{
// How to block some signals such as SIGTERM, SIGHUP?
// Do other stuff.
}