mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-02 15:49:48 -04:00
stratosphere: use SdkMutex/SdkRecursiveMutex over Mutex
This commit is contained in:
parent
a4fe1bb5d8
commit
41ab4c2c68
70 changed files with 188 additions and 645 deletions
|
@ -214,9 +214,9 @@ namespace ams::sdmmc::impl {
|
|||
bool is_awake;
|
||||
public:
|
||||
#if defined(AMS_SDMMC_THREAD_SAFE)
|
||||
mutable os::Mutex device_mutex;
|
||||
mutable os::SdkRecursiveMutex device_mutex;
|
||||
public:
|
||||
BaseDevice() : device_mutex(true)
|
||||
BaseDevice() : device_mutex()
|
||||
#else
|
||||
BaseDevice()
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue