mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
15 lines
225 B
C++
15 lines
225 B
C++
#pragma once
|
|
#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
|