mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-17 12:25:15 +00:00
moved tsc and asm utilities to rx
This commit is contained in:
parent
bd215fab92
commit
640df36c48
121 changed files with 706 additions and 1225 deletions
|
|
@ -9,7 +9,7 @@
|
|||
#include "util/lockless.h"
|
||||
|
||||
#include <thread>
|
||||
#include "util/asm.hpp"
|
||||
#include "rx/asm.hpp"
|
||||
|
||||
namespace rsx
|
||||
{
|
||||
|
|
@ -181,13 +181,13 @@ namespace rsx
|
|||
while (_thr.m_enqueued_count.load() > _thr.m_processed_count.load())
|
||||
{
|
||||
rsxthr->on_semaphore_acquire_wait();
|
||||
utils::pause();
|
||||
rx::pause();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
while (_thr.m_enqueued_count.load() > _thr.m_processed_count.load())
|
||||
utils::pause();
|
||||
rx::pause();
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue