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

8 lines
161 B
C++
Raw Normal View History

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