Files
archived-orbis-kernel/include/orbis/thread/ProcessState.hpp
2023-06-22 18:36:21 +03:00

12 lines
184 B
C++

#pragma once
#include <cstdint>
namespace orbis {
enum class ProcessState : std::uint32_t {
NEW, // In creation
NORMAL, // threads can be run
ZOMBIE
};
} // namespace orbis