1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 09:04:59 +00:00

Kernel: Add initializer for Thread::m_tss

This commit is contained in:
Andreas Kling 2021-02-07 17:57:02 +01:00
parent 5c1c82cd33
commit fd3eca3acc
2 changed files with 1 additions and 2 deletions

View file

@ -1238,7 +1238,7 @@ private:
mutable RecursiveSpinLock m_block_lock;
NonnullRefPtr<Process> m_process;
ThreadID m_tid { -1 };
TSS32 m_tss;
TSS32 m_tss {};
TrapFrame* m_current_trap { nullptr };
u32 m_saved_critical { 1 };
IntrusiveListNode m_ready_queue_node;