1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 07:55:07 +00:00
serenity/Kernel/Memory/PageFaultResponse.h

17 lines
221 B
C++

/*
* Copyright (c) 2020, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Kernel {
enum class PageFaultResponse {
ShouldCrash,
OutOfMemory,
Continue,
};
}