All: Start work again on sse support

This commit is contained in:
2023-12-28 19:14:42 +02:00
parent 5d83ab2289
commit 4307968182
4 changed files with 16 additions and 17 deletions

View File

@@ -99,7 +99,11 @@ namespace Kernel
Thread::Thread(pid_t tid, Process* process)
: m_tid(tid), m_process(process)
{}
{
#if __enable_sse
save_sse();
#endif
}
Thread& Thread::current()
{