nix-super/src/libutil/namespaces.hh

16 lines
155 B
C++
Raw Normal View History

#pragma once
namespace nix {
2023-01-27 17:52:31 +02:00
#if __linux__
bool userNamespacesSupported();
bool mountNamespacesSupported();
bool pidNamespacesSupported();
2023-01-27 17:52:31 +02:00
#endif
}