mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
14 lines
212 B
C++
14 lines
212 B
C++
#if defined(__linux__)
|
|
|
|
#include <linux/capability.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Check that the current process has Linux capability. Examples: CAP_IPC_LOCK, CAP_NET_ADMIN.
|
|
bool hasLinuxCapability(int cap);
|
|
|
|
}
|
|
|
|
#endif
|