AllocationStrategy.h 217 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2020, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Kernel {
  8. enum class AllocationStrategy {
  9. Reserve = 0,
  10. AllocateNow,
  11. None
  12. };
  13. }