Serenity Operating System
at master 17 lines 217 B view raw
1/* 2 * Copyright (c) 2020, the SerenityOS developers. 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7#pragma once 8 9namespace Kernel { 10 11enum class AllocationStrategy { 12 Reserve = 0, 13 AllocateNow, 14 None 15}; 16 17}