mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
4e76629aaf
- lots of static_cast - add safe_cast - types adjustments - config - IStorage::read/watch - ... - some TODO's (to convert types in future) P.S. That was quite a journey... v2: fixes after rebase v3: fix conflicts after #42308 merged Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
8 lines
190 B
C++
8 lines
190 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
|
|
/// Get current process file descriptor count
|
|
/// @return -1 os doesn't support "lsof" command or some error occurs.
|
|
Int64 getCurrentProcessFDCount();
|