early-access version 3035
This commit is contained in:
@@ -37,6 +37,8 @@ public:
|
||||
}
|
||||
|
||||
void* Allocate() {
|
||||
// KScopedInterruptDisable di;
|
||||
|
||||
m_lock.lock();
|
||||
|
||||
Node* ret = m_head;
|
||||
@@ -49,6 +51,8 @@ public:
|
||||
}
|
||||
|
||||
void Free(void* obj) {
|
||||
// KScopedInterruptDisable di;
|
||||
|
||||
m_lock.lock();
|
||||
|
||||
Node* node = static_cast<Node*>(obj);
|
||||
|
@@ -1,6 +1,8 @@
|
||||
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/result.h"
|
||||
|
||||
namespace Service::VI {
|
||||
|
Reference in New Issue
Block a user