1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 12:12:50 +01:00

squeue_t fixed

This commit is contained in:
Nekotekina 2014-12-26 01:49:55 +03:00
parent c305949435
commit bdbbde4d36
2 changed files with 68 additions and 46 deletions

View File

@ -257,48 +257,51 @@ bool waiter_map_t::is_stopped(u64 signal_id)
void waiter_map_t::waiter_reg_t::init() void waiter_map_t::waiter_reg_t::init()
{ {
if (thread) return; if (!thread)
{
thread = GetCurrentNamedThread();
thread = GetCurrentNamedThread(); std::lock_guard<std::mutex> lock(map.m_mutex);
std::lock_guard<std::mutex> lock(map.m_mutex); // add waiter
map.m_waiters.push_back({ signal_id, thread });
// add waiter }
map.m_waiters.push_back({ signal_id, thread });
} }
waiter_map_t::waiter_reg_t::~waiter_reg_t() waiter_map_t::waiter_reg_t::~waiter_reg_t()
{ {
if (!thread) return; if (thread)
std::lock_guard<std::mutex> lock(map.m_mutex);
// remove waiter
for (s64 i = map.m_waiters.size() - 1; i >= 0; i--)
{ {
if (map.m_waiters[i].signal_id == signal_id && map.m_waiters[i].thread == thread) std::lock_guard<std::mutex> lock(map.m_mutex);
{
map.m_waiters.erase(map.m_waiters.begin() + i);
return;
}
}
LOG_ERROR(HLE, "%s(): waiter not found (signal_id=0x%llx, map='%s')", __FUNCTION__, signal_id, map.m_name.c_str()); // remove waiter
Emu.Pause(); for (s64 i = map.m_waiters.size() - 1; i >= 0; i--)
{
if (map.m_waiters[i].signal_id == signal_id && map.m_waiters[i].thread == thread)
{
map.m_waiters.erase(map.m_waiters.begin() + i);
return;
}
}
LOG_ERROR(HLE, "%s(): waiter not found (signal_id=0x%llx, map='%s')", __FUNCTION__, signal_id, map.m_name.c_str());
Emu.Pause();
}
} }
void waiter_map_t::notify(u64 signal_id) void waiter_map_t::notify(u64 signal_id)
{ {
if (!m_waiters.size()) return; if (m_waiters.size())
std::lock_guard<std::mutex> lock(m_mutex);
// find waiter and signal
for (auto& v : m_waiters)
{ {
if (v.signal_id == signal_id) std::lock_guard<std::mutex> lock(m_mutex);
// find waiter and signal
for (auto& v : m_waiters)
{ {
v.thread->Notify(); if (v.signal_id == signal_id)
{
v.thread->Notify();
}
} }
} }
} }

View File

@ -174,6 +174,13 @@ class squeue_t
T m_data[sq_size]; T m_data[sq_size];
enum squeue_sync_var_result : u32
{
SQSVR_OK = 0,
SQSVR_LOCKED = 1,
SQSVR_FAILED = 2,
};
public: public:
squeue_t() squeue_t()
{ {
@ -194,22 +201,26 @@ public:
{ {
u32 pos = 0; u32 pos = 0;
while (!m_sync.atomic_op_sync(true, [&pos](squeue_sync_var_t& sync) -> bool while (u32 res = m_sync.atomic_op_sync(SQSVR_OK, [&pos](squeue_sync_var_t& sync) -> u32
{ {
assert(sync.count <= sq_size); assert(sync.count <= sq_size);
assert(sync.position < sq_size); assert(sync.position < sq_size);
if (sync.write_lock || sync.count == sq_size) if (sync.write_lock)
{ {
return false; return SQSVR_LOCKED;
}
if (sync.count == sq_size)
{
return SQSVR_FAILED;
} }
sync.write_lock = 1; sync.write_lock = 1;
pos = sync.position + sync.count; pos = sync.position + sync.count;
return true; return SQSVR_OK;
})) }))
{ {
if (squeue_test_exit(do_exit)) if (res == SQSVR_FAILED && squeue_test_exit(do_exit))
{ {
return false; return false;
} }
@ -245,22 +256,26 @@ public:
{ {
u32 pos = 0; u32 pos = 0;
while (!m_sync.atomic_op_sync(true, [&pos](squeue_sync_var_t& sync) -> bool while (u32 res = m_sync.atomic_op_sync(SQSVR_OK, [&pos](squeue_sync_var_t& sync) -> u32
{ {
assert(sync.count <= sq_size); assert(sync.count <= sq_size);
assert(sync.position < sq_size); assert(sync.position < sq_size);
if (sync.read_lock || !sync.count) if (sync.read_lock)
{ {
return false; return SQSVR_LOCKED;
}
if (!sync.count)
{
return SQSVR_FAILED;
} }
sync.read_lock = 1; sync.read_lock = 1;
pos = sync.position; pos = sync.position;
return true; return SQSVR_OK;
})) }))
{ {
if (squeue_test_exit(do_exit)) if (res == SQSVR_FAILED && squeue_test_exit(do_exit))
{ {
return false; return false;
} }
@ -299,19 +314,19 @@ public:
void clear() void clear()
{ {
while (!m_sync.atomic_op_sync(true, [](squeue_sync_var_t& sync) -> bool while (m_sync.atomic_op_sync(SQSVR_OK, [](squeue_sync_var_t& sync) -> u32
{ {
assert(sync.count <= sq_size); assert(sync.count <= sq_size);
assert(sync.position < sq_size); assert(sync.position < sq_size);
if (sync.read_lock || sync.write_lock) if (sync.read_lock || sync.write_lock)
{ {
return false; return SQSVR_LOCKED;
} }
sync.read_lock = 1; sync.read_lock = 1;
sync.write_lock = 1; sync.write_lock = 1;
return true; return SQSVR_OK;
})) }))
{ {
std::unique_lock<std::mutex> rcv_lock(m_rcv_mutex); std::unique_lock<std::mutex> rcv_lock(m_rcv_mutex);
@ -328,22 +343,26 @@ public:
assert(start_pos < sq_size); assert(start_pos < sq_size);
u32 pos = 0; u32 pos = 0;
while (!m_sync.atomic_op_sync(true, [&pos, start_pos](squeue_sync_var_t& sync) -> bool while (u32 res = m_sync.atomic_op_sync(SQSVR_OK, [&pos, start_pos](squeue_sync_var_t& sync) -> u32
{ {
assert(sync.count <= sq_size); assert(sync.count <= sq_size);
assert(sync.position < sq_size); assert(sync.position < sq_size);
if (sync.read_lock || sync.count <= start_pos) if (sync.read_lock)
{ {
return false; return SQSVR_LOCKED;
}
if (sync.count <= start_pos)
{
return SQSVR_FAILED;
} }
sync.read_lock = 1; sync.read_lock = 1;
pos = sync.position + start_pos; pos = sync.position + start_pos;
return true; return SQSVR_OK;
})) }))
{ {
if (squeue_test_exit(do_exit)) if (res == SQSVR_FAILED && squeue_test_exit(do_exit))
{ {
return false; return false;
} }