Switching to xe::mutex.

This commit is contained in:
Ben Vanik
2015-05-24 23:16:43 -07:00
parent 814ec82ad4
commit f5a2b85d42
31 changed files with 133 additions and 108 deletions

View File

@@ -14,6 +14,8 @@
#include <unordered_map>
#include <vector>
#include "xenia/base/mutex.h"
namespace xe {
namespace cpu {
@@ -45,7 +47,7 @@ class EntryTable {
private:
// TODO(benvanik): replace with a better data structure.
std::mutex lock_;
xe::mutex lock_;
std::unordered_map<uint32_t, Entry*> map_;
};