mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-23 06:56:20 +00:00
vk: Use standard C++
This commit is contained in:
parent
2ae9753d79
commit
2c8c788d81
@ -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…
Reference in New Issue
Block a user