Navigation
API > API/Developer > API/Developer/TargetPlatform
Enumerates states of threads running on a target device.
| Name | ETargetDeviceThreadStates |
| Type | enum |
| Header File | /Engine/Source/Developer/TargetPlatform/Public/Interfaces/ITargetDevice.h |
| Include Path | #include "Interfaces/ITargetDevice.h" |
Syntax
enum ETargetDeviceThreadStates
{
Unknown,
CanRun,
Inactive,
Inhibited,
RunQueue,
Running,
}
Values
| Name | Remarks |
|---|---|
| Unknown | Unknown thread state. |
| CanRun | The thread can run, but is not running right now. |
| Inactive | The thread is inactive, i.e. has just been created or exited. |
| Inhibited | The thread cannot run right now. |
| RunQueue | The thread is in the run queue. |
| Running | The thread is running. |