2014-12-23 02:31:11 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-06-19 18:49:38 +03:00
|
|
|
namespace vm { using namespace ps3; }
|
|
|
|
|
|
2014-12-23 02:31:11 +03:00
|
|
|
// attr_protocol (waiting scheduling policy)
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
// First In, First Out
|
|
|
|
|
SYS_SYNC_FIFO = 1,
|
|
|
|
|
// Priority Order
|
|
|
|
|
SYS_SYNC_PRIORITY = 2,
|
|
|
|
|
// Basic Priority Inheritance Protocol (probably not implemented)
|
|
|
|
|
SYS_SYNC_PRIORITY_INHERIT = 3,
|
|
|
|
|
// Not selected while unlocking
|
|
|
|
|
SYS_SYNC_RETRY = 4,
|
|
|
|
|
//
|
|
|
|
|
SYS_SYNC_ATTR_PROTOCOL_MASK = 0xF,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// attr_recursive (recursive locks policy)
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
// Recursive locks are allowed
|
|
|
|
|
SYS_SYNC_RECURSIVE = 0x10,
|
|
|
|
|
// Recursive locks are NOT allowed
|
|
|
|
|
SYS_SYNC_NOT_RECURSIVE = 0x20,
|
|
|
|
|
//
|
|
|
|
|
SYS_SYNC_ATTR_RECURSIVE_MASK = 0xF0, //???
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-22 02:24:53 +05:30
|
|
|
// attr_pshared
|
|
|
|
|
enum
|
|
|
|
|
{
|
2015-06-24 19:25:37 +03:00
|
|
|
SYS_SYNC_NOT_PROCESS_SHARED = 0x200,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// attr_adaptive
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
SYS_SYNC_ADAPTIVE = 0x1000,
|
|
|
|
|
SYS_SYNC_NOT_ADAPTIVE = 0x2000,
|
2015-02-22 02:24:53 +05:30
|
|
|
};
|
|
|
|
|
|
2015-07-08 01:33:24 +03:00
|
|
|
using sleep_queue_t = std::deque<std::shared_ptr<CPUThread>>;
|
|
|
|
|
|
|
|
|
|
// automatic object handling adding threads to the sleep queue
|
|
|
|
|
class sleep_queue_entry_t final
|
2014-12-23 02:31:11 +03:00
|
|
|
{
|
2015-07-08 01:33:24 +03:00
|
|
|
CPUThread& m_thread;
|
|
|
|
|
sleep_queue_t& m_queue;
|
2014-12-24 19:09:32 +03:00
|
|
|
|
|
|
|
|
public:
|
2015-07-08 01:33:24 +03:00
|
|
|
// adds specified thread to the sleep queue
|
|
|
|
|
sleep_queue_entry_t(CPUThread& cpu, sleep_queue_t& queue);
|
2014-12-28 16:15:22 +03:00
|
|
|
|
2015-07-08 01:33:24 +03:00
|
|
|
// removes specified thread from the sleep queue
|
|
|
|
|
~sleep_queue_entry_t() noexcept(false);
|
2014-12-23 02:31:11 +03:00
|
|
|
};
|