itsmeft24
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
6 deletions
-
src/core/hle/kernel/k_code_memory.h
|
|
|
@ -54,13 +54,13 @@ public: |
|
|
|
} |
|
|
|
|
|
|
|
private: |
|
|
|
KPageLinkedList m_page_group; |
|
|
|
KProcess* m_owner; |
|
|
|
VAddr m_address; |
|
|
|
KPageLinkedList m_page_group{}; |
|
|
|
KProcess* m_owner{}; |
|
|
|
VAddr m_address{}; |
|
|
|
KLightLock m_lock; |
|
|
|
bool m_is_initialized; |
|
|
|
bool m_is_owner_mapped; |
|
|
|
bool m_is_mapped; |
|
|
|
bool m_is_initialized{}; |
|
|
|
bool m_is_owner_mapped{}; |
|
|
|
bool m_is_mapped{}; |
|
|
|
}; |
|
|
|
|
|
|
|
} // namespace Kernel |