mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
[Kernel] Add some useful asserts
This commit is contained in:
parent
ae15c27a24
commit
5bec69e983
2 changed files with 2 additions and 0 deletions
|
|
@ -194,6 +194,7 @@ X_STATUS ObjectTable::RemoveHandle(X_HANDLE handle) {
|
|||
if (entry->object) {
|
||||
auto object = entry->object;
|
||||
entry->object = nullptr;
|
||||
assert_zero(entry->handle_ref_count);
|
||||
entry->handle_ref_count = 0;
|
||||
|
||||
// Walk the object's handles and remove this one.
|
||||
|
|
|
|||
|
|
@ -49,6 +49,7 @@ XObject::XObject(KernelState* kernel_state, Type type)
|
|||
}
|
||||
|
||||
XObject::~XObject() {
|
||||
assert_true(handles_.empty());
|
||||
assert_zero(pointer_ref_count_);
|
||||
|
||||
if (allocated_guest_object_) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue