summaryrefslogtreecommitdiffstats
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h10
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