mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Removed unrelated changes
This commit is contained in:
parent
9c868c910a
commit
48d126e88a
@ -236,9 +236,3 @@ std::optional<std::reference_wrapper<Daemon>> BaseDaemon::tryGetInstance()
|
||||
else
|
||||
return {};
|
||||
}
|
||||
|
||||
|
||||
/// If you send TSTP signal with value (sigqueue) to a thread, it will make a callback
|
||||
/// from a separate thread and you can call non signal-safe function from there.
|
||||
using SignalCallback = void(const siginfo_t &, const StackTrace &, UInt32);
|
||||
|
||||
|
@ -70,12 +70,7 @@ static void call_default_signal_handler(int sig)
|
||||
}
|
||||
|
||||
|
||||
/// Normally query_id is a UUID (string with a fixed length) but user can provide custom query_id.
|
||||
/// Thus upper bound on query_id length should be introduced to avoid buffer overflow in signal handler.
|
||||
constexpr size_t QUERY_ID_MAX_LEN = 1024;
|
||||
|
||||
static const size_t buf_size = sizeof(int) + sizeof(siginfo_t) + sizeof(ucontext_t) + sizeof(StackTrace) + sizeof(UInt32)
|
||||
+ QUERY_ID_MAX_LEN + 2 /* varint encoding query_id length */;
|
||||
static const size_t buf_size = sizeof(int) + sizeof(siginfo_t) + sizeof(ucontext_t) + sizeof(StackTrace) + sizeof(UInt32);
|
||||
|
||||
|
||||
using signal_function = void(int, siginfo_t*, void*);
|
||||
|
Loading…
Reference in New Issue
Block a user