InodeWatcherFlags.h 320 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/EnumBits.h>
  8. #include <AK/Types.h>
  9. enum class InodeWatcherFlags : u32 {
  10. None = 0,
  11. Nonblock = 1 << 0,
  12. CloseOnExec = 1 << 1,
  13. };
  14. AK_ENUM_BITWISE_OPERATORS(InodeWatcherFlags);