mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 04:51:26 +12:00
vk: Use standard C++
This commit is contained in:
parent
2ae9753d79
commit
2c8c788d81
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ namespace vk
|
|||
public:
|
||||
inline void flush_all()
|
||||
{
|
||||
reader_lock lock(m_notifications_lock);
|
||||
std::shared_lock lock(m_notifications_lock);
|
||||
|
||||
for (auto& set : m_notification_list)
|
||||
{
|
||||
|
@ -44,7 +44,7 @@ namespace vk
|
|||
|
||||
private:
|
||||
rsx::simple_array<descriptor_set*> m_notification_list;
|
||||
shared_mutex m_notifications_lock;
|
||||
std::shared_mutex m_notifications_lock;
|
||||
|
||||
dispatch_manager(const dispatch_manager&) = delete;
|
||||
dispatch_manager& operator = (const dispatch_manager&) = delete;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue