Serenity Operating System
at master 18 lines 320 B view raw
1/* 2 * Copyright (c) 2021, sin-ack <sin-ack@protonmail.com> 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7#pragma once 8 9#include <AK/EnumBits.h> 10#include <AK/Types.h> 11 12enum class InodeWatcherFlags : u32 { 13 None = 0, 14 Nonblock = 1 << 0, 15 CloseOnExec = 1 << 1, 16}; 17 18AK_ENUM_BITWISE_OPERATORS(InodeWatcherFlags);