rpcsx/orbis-kernel/include/orbis/thread/ThreadState.hpp

14 lines
171 B
C++
Raw Normal View History

2023-07-03 13:10:16 +02:00
#pragma once
#include <cstdint>
namespace orbis {
2023-07-06 18:16:25 +02:00
enum class ThreadState : std::uint32_t {
INACTIVE,
INHIBITED,
CAN_RUN,
RUNQ,
RUNNING
};
2023-07-03 13:10:16 +02:00
} // namespace orbis