1 | // SPDX-License-Identifier: GPL-3.0-or-later |
---|---|
2 | |
3 | #pragma once |
4 | |
5 | #include "mos/platform/platform.hpp" |
6 | |
7 | #include <mos/allocator.hpp> |
8 | |
9 | extern mos::Slab<u8> xsave_area_slab; |
10 | |
11 | void x86_xsave_thread(Thread *thread); |
12 | void x86_xrstor_thread(Thread *thread); |
13 |