1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:17:35 +00:00

Kernel: Extract ProcessorSpecificDataID from from Arch/Processor.h

This commit is contained in:
Hendiadyoin1 2021-12-07 00:54:25 +01:00 committed by Brian Gianforcaro
parent 556b516182
commit 3f434506f5
4 changed files with 19 additions and 4 deletions

View file

@ -0,0 +1,16 @@
/*
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Kernel {
enum class ProcessorSpecificDataID {
MemoryManager,
__Count,
};
}