/* * Copyright (c) 2021, sin-ack * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include enum class InodeWatcherFlags : u32 { None = 0, Nonblock = 1 << 0, CloseOnExec = 1 << 1, }; AK_ENUM_BITWISE_OPERATORS(InodeWatcherFlags);