diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-03-07 13:27:27 -0400 |
|---|---|---|
| committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 11:35:35 -0400 |
| commit | 725bac14044b2645b9ce912d1b1e2c9c2a96818b (patch) | |
| tree | a5eaedf5bc5647f9bde9215097472819bbb9d6ac /src/core/arm | |
| parent | 38c6c497f6895cff2f073802e77834aa3347f954 (diff) | |
Scheduler: Remove arm_interface lock and a few corrections.
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 |
