PageFaultResponse.h 221 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 PageFaultResponse {
  9. ShouldCrash,
  10. OutOfMemory,
  11. Continue,
  12. };
  13. }