kernel/Thread: Add FIXME
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-01-31 17:02:49 +01:00
parent 35501407c1
commit 3a84e4998c
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -21,6 +21,8 @@ enum class ThreadState
Dying
};
// FIXME: Save floating point state. (SSE registers on x86_64 using FXSAVE and FXRSTOR)
struct Thread : public LinkedListNode<Thread>
{
Registers regs;