ladybird/Kernel/VM/PageFaultResponse.h

18 lines
221 B
C
Raw Normal View History

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