rpcs3/Utilities/SleepQueue.h

46 lines
988 B
C
Raw Normal View History

2014-12-23 00:31:11 +01:00
#pragma once
2015-11-26 09:06:29 +01:00
using sleep_entry_t = class CPUThread;
using sleep_queue_t = std::deque<std::shared_ptr<sleep_entry_t>>;
static struct defer_sleep_t {} const defer_sleep{};
2015-07-19 03:56:33 +02:00
// automatic object handling a thread entry in the sleep queue
class sleep_queue_entry_t final
2014-12-23 00:31:11 +01:00
{
2015-11-26 09:06:29 +01:00
sleep_entry_t& m_thread;
sleep_queue_t& m_queue;
2014-12-24 17:09:32 +01:00
2015-07-19 03:56:33 +02:00
void add_entry();
void remove_entry();
bool find() const;
2014-12-24 17:09:32 +01:00
public:
2015-07-19 03:56:33 +02:00
// add specified thread to the sleep queue
2015-11-26 09:06:29 +01:00
sleep_queue_entry_t(sleep_entry_t& entry, sleep_queue_t& queue);
2014-12-28 14:15:22 +01:00
2015-07-19 03:56:33 +02:00
// don't add specified thread to the sleep queue
2015-11-26 09:06:29 +01:00
sleep_queue_entry_t(sleep_entry_t& entry, sleep_queue_t& queue, const defer_sleep_t&);
2015-07-19 03:56:33 +02:00
// removes specified thread from the sleep queue if added
~sleep_queue_entry_t();
2015-07-19 03:56:33 +02:00
// add thread to the sleep queue
void enter()
2015-07-19 03:56:33 +02:00
{
add_entry();
}
// remove thread from the sleep queue
void leave()
2015-07-19 03:56:33 +02:00
{
remove_entry();
}
// check whether the thread exists in the sleep queue
explicit operator bool() const
2015-07-19 03:56:33 +02:00
{
return find();
}
2014-12-23 00:31:11 +01:00
};