ClickHouse/dbms/src/Common/hasLinuxCapability.h

14 lines
212 B
C++
Raw Normal View History

#if defined(__linux__)
#include <linux/capability.h>
namespace DB
{
2018-11-14 01:59:32 +00:00
/// Check that the current process has Linux capability. Examples: CAP_IPC_LOCK, CAP_NET_ADMIN.
bool hasLinuxCapability(int cap);
}
#endif