[Kernel] Add some useful asserts

This commit is contained in:
Silent 2019-11-15 23:04:08 +01:00
parent 8ba6f3fc37
commit b8ecd11e0e
No known key found for this signature in database
GPG Key ID: AE53149BB0C45AF1
2 changed files with 2 additions and 0 deletions

View File

@ -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.

View File

@ -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_) {