crit: show dead task_state

In some cases, CRIU can observe tasks that exit during checkpointing,
and sets the state of these tasks to COMPEL_TASK_DEAD.
This patch adds a string representation of this value that can be used
by CRIT when decoding the images.

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
Radostin Stoyanov 2026-01-12 05:47:02 +00:00
parent acf7fb4461
commit c5491f229a

View file

@ -154,6 +154,7 @@ flags_maps = {
gen_maps = {
'task_state': {
1: 'Alive',
2: 'Dead',
3: 'Stopped',
6: 'Zombie',
},