mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
Acked-by: Mike Rapoport <rppt@linux.ibm.com> Signed-off-by: Adrian Reber <areber@redhat.com>
19 lines
455 B
C
19 lines
455 B
C
#ifndef __COMPEL_UAPI_TASK_STATE_H__
|
|
#define __COMPEL_UAPI_TASK_STATE_H__
|
|
|
|
/*
|
|
* Task state, as returned by compel_wait_task()
|
|
* and used in arguments to compel_resume_task().
|
|
*/
|
|
enum __compel_task_state {
|
|
COMPEL_TASK_ALIVE = 0x01,
|
|
COMPEL_TASK_DEAD = 0x02,
|
|
COMPEL_TASK_STOPPED = 0x03,
|
|
COMPEL_TASK_ZOMBIE = 0x06,
|
|
/* Don't ever change the above values, they are used by CRIU! */
|
|
|
|
COMPEL_TASK_MAX = 0x7f
|
|
};
|
|
|
|
#endif /* __COMPEL_UAPI_TASK_STATE_H__ */
|