mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 12:56:23 +03:00
a1d7ebf85a
This directory isn't just about virtual memory, it's about all kinds of memory management.
18 lines
217 B
C++
18 lines
217 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
|
|
enum class AllocationStrategy {
|
|
Reserve = 0,
|
|
AllocateNow,
|
|
None
|
|
};
|
|
|
|
}
|