Update k_code_memory.h

This commit is contained in:
itsmeft24 2021-12-07 16:58:23 -05:00 committed by GitHub
parent d197246880
commit e05c86aa3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,13 +54,13 @@ public:
} }
private: private:
KPageLinkedList m_page_group; KPageLinkedList m_page_group{};
KProcess* m_owner; KProcess* m_owner{};
VAddr m_address; VAddr m_address{};
KLightLock m_lock; KLightLock m_lock;
bool m_is_initialized; bool m_is_initialized{};
bool m_is_owner_mapped; bool m_is_owner_mapped{};
bool m_is_mapped; bool m_is_mapped{};
}; };
} // namespace Kernel } // namespace Kernel