diff options
| author | bunnei <bunneidev@gmail.com> | 2022-03-19 23:17:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-19 23:17:37 -0700 |
| commit | 5960d5472294573834265d69ea6050e297af2cd6 (patch) | |
| tree | 0292e45c99550c870e08f2105ffdc53298b3aec7 /src/core/hle/kernel/k_handle_table.cpp | |
| parent | 474318ee375688f3603df0b9d9b33544f9abe096 (diff) | |
| parent | 8b7d571b66c913c2f0a9e2804c90392f34440983 (diff) | |
Merge pull request #8040 from Morph1984/handle-table
KHandleTable: Optimize table entry layout
Diffstat (limited to 'src/core/hle/kernel/k_handle_table.cpp')
| -rw-r--r-- | src/core/hle/kernel/k_handle_table.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/k_handle_table.cpp b/src/core/hle/kernel/k_handle_table.cpp index cf95f0852..db7512ee7 100644 --- a/src/core/hle/kernel/k_handle_table.cpp +++ b/src/core/hle/kernel/k_handle_table.cpp @@ -63,7 +63,7 @@ bool KHandleTable::Remove(Handle handle) { return true; } -ResultCode KHandleTable::Add(Handle* out_handle, KAutoObject* obj, u16 type) { +ResultCode KHandleTable::Add(Handle* out_handle, KAutoObject* obj) { KScopedDisableDispatch dd(kernel); KScopedSpinLock lk(m_lock); @@ -75,7 +75,7 @@ ResultCode KHandleTable::Add(Handle* out_handle, KAutoObject* obj, u16 type) { const auto linear_id = this->AllocateLinearId(); const auto index = this->AllocateEntry(); - m_entry_infos[index].info = {.linear_id = linear_id, .type = type}; + m_entry_infos[index].linear_id = linear_id; m_objects[index] = obj; obj->Open(); @@ -116,7 +116,7 @@ void KHandleTable::Unreserve(Handle handle) { } } -void KHandleTable::Register(Handle handle, KAutoObject* obj, u16 type) { +void KHandleTable::Register(Handle handle, KAutoObject* obj) { KScopedDisableDispatch dd(kernel); KScopedSpinLock lk(m_lock); @@ -132,7 +132,7 @@ void KHandleTable::Register(Handle handle, KAutoObject* obj, u16 type) { // Set the entry. ASSERT(m_objects[index] == nullptr); - m_entry_infos[index].info = {.linear_id = static_cast<u16>(linear_id), .type = type}; + m_entry_infos[index].linear_id = static_cast<u16>(linear_id); m_objects[index] = obj; obj->Open(); |
