2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00

criu/seize.c: clang-format it

Done using clang-format 19.1.5 with .clang-format obtained via
scripts/fetch-clang-format.sh.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin 2024-12-16 16:38:31 -08:00 committed by Andrei Vagin
parent 32d5a766ee
commit f314ca5e1f

View File

@ -87,7 +87,10 @@ static const char frozen[] = "FROZEN";
static const char freezing[] = "FREEZING"; static const char freezing[] = "FREEZING";
static const char thawed[] = "THAWED"; static const char thawed[] = "THAWED";
enum freezer_state { FREEZER_ERROR = -1, THAWED, FROZEN, FREEZING }; enum freezer_state { FREEZER_ERROR = -1,
THAWED,
FROZEN,
FREEZING };
/* Track if we are running on cgroup v2 system. */ /* Track if we are running on cgroup v2 system. */
static bool cgroup_v2 = false; static bool cgroup_v2 = false;