diff options
| author | bunnei <bunneidev@gmail.com> | 2021-12-17 16:05:51 -0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2021-12-17 16:05:51 -0800 |
| commit | c73841500a7bf98f9f4006d25507b7b596257cbd (patch) | |
| tree | a7d617bc9b1525a5c342c34a8b909c15bf6cb293 /src/core/hle/service/bcat/backend/backend.h | |
| parent | e242f169864c1e6eae067bb1866b18bde6aeb3ac (diff) | |
core: hle: Remove global HLE lock.
- This was added early on as a hack to protect against some concurrency issues.
- It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex.
Diffstat (limited to 'src/core/hle/service/bcat/backend/backend.h')
| -rw-r--r-- | src/core/hle/service/bcat/backend/backend.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/service/bcat/backend/backend.h b/src/core/hle/service/bcat/backend/backend.h index 59c6d4740..63833c927 100644 --- a/src/core/hle/service/bcat/backend/backend.h +++ b/src/core/hle/service/bcat/backend/backend.h @@ -71,10 +71,6 @@ class ProgressServiceBackend { public: ~ProgressServiceBackend(); - // Clients should call this with true if any of the functions are going to be called from a - // non-HLE thread and this class need to lock the hle mutex. (default is false) - void SetNeedHLELock(bool need); - // Sets the number of bytes total in the entire download. void SetTotalSize(u64 size); @@ -109,7 +105,6 @@ private: DeliveryCacheProgressImpl impl{}; Kernel::KEvent* update_event; - bool need_hle_lock = false; }; // A class representing an abstract backend for BCAT functionality. |
