Navigation
API > API/Developer > API/Developer/TargetPlatform
Enumerates wait states of threads running on a target device.
| Name | ETargetDeviceThreadWaitStates |
| Type | enum |
| Header File | /Engine/Source/Developer/TargetPlatform/Public/Interfaces/ITargetDevice.h |
| Include Path | #include "Interfaces/ITargetDevice.h" |
Syntax
enum ETargetDeviceThreadWaitStates
{
Unknown,
Locked,
Sleeping,
Suspended,
Swapped,
Waiting,
}
Values
| Name | Remarks |
|---|---|
| Unknown | Unknown wait state. |
| Locked | The thread is blocked by a lock. |
| Sleeping | The thread is sleeping. |
| Suspended | The thread is suspended. |
| Swapped | The thread is swapped. |
| Waiting | The thread is waiting on an interrupt. |