diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-03-07 18:27:27 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 17:35:35 +0200 |
commit | 725bac14044b2645b9ce912d1b1e2c9c2a96818b (patch) | |
tree | a5eaedf5bc5647f9bde9215097472819bbb9d6ac /src/core/arm | |
parent | Yuzu/Debuggers: Correct Wait Tree for Paused threads. (diff) | |
download | yuzu-725bac14044b2645b9ce912d1b1e2c9c2a96818b.tar yuzu-725bac14044b2645b9ce912d1b1e2c9c2a96818b.tar.gz yuzu-725bac14044b2645b9ce912d1b1e2c9c2a96818b.tar.bz2 yuzu-725bac14044b2645b9ce912d1b1e2c9c2a96818b.tar.lz yuzu-725bac14044b2645b9ce912d1b1e2c9c2a96818b.tar.xz yuzu-725bac14044b2645b9ce912d1b1e2c9c2a96818b.tar.zst yuzu-725bac14044b2645b9ce912d1b1e2c9c2a96818b.zip |
Diffstat (limited to 'src/core/arm')
-rw-r--r-- | src/core/arm/arm_interface.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index be9f3703a..87a1c29cc 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -6,7 +6,6 @@ #include <array> #include <vector> -#include <mutex> #include "common/common_types.h" namespace Common { @@ -165,14 +164,6 @@ public: std::string name; }; - void Lock() { - guard.lock(); - } - - void Unlock() { - guard.unlock(); - } - std::vector<BacktraceEntry> GetBacktrace() const; /// fp (= r29) points to the last frame record. @@ -187,7 +178,6 @@ protected: /// System context that this ARM interface is running under. System& system; CPUInterruptHandler& interrupt_handler; - std::mutex guard; }; } // namespace Core |