mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-25 17:15:42 +02:00
17 lines
211 B
C++
17 lines
211 B
C++
/*
|
|
* Copyright (c) 2024, Sönke Holz <soenke.holz@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Kernel {
|
|
|
|
struct ArchSpecificThreadData {
|
|
};
|
|
|
|
}
|