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

14 lines
171 B
C++
Raw Normal View History

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