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

12 lines
184 B
C++
Raw Normal View History

2023-07-03 13:10:16 +02:00
#pragma once
#include <cstdint>
namespace orbis {
enum class ProcessState : std::uint32_t {
NEW, // In creation
NORMAL, // threads can be run
ZOMBIE
};
} // namespace orbis