1 | // SPDX-License-Identifier: GPL-3.0-or-later |
---|---|
2 | |
3 | #pragma once |
4 | |
5 | #include "mos/mm/slab.h" |
6 | #include "mos/platform/platform.h" |
7 | |
8 | extern slab_t *xsave_area_slab; |
9 | |
10 | void x86_xsave_thread(thread_t *thread); |
11 | void x86_xrstor_thread(thread_t *thread); |
12 |