From 9014fd82f7ca088b5548d27138c7ffd78aa317e4 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Fri, 30 Sep 2022 14:59:38 +0200 Subject: [PATCH] missing_sched: add CLONE_NEWTIME --- src/basic/missing_sched.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/basic/missing_sched.h b/src/basic/missing_sched.h index 6a889f66d95..bcd5b771206 100644 --- a/src/basic/missing_sched.h +++ b/src/basic/missing_sched.h @@ -7,6 +7,11 @@ #define CLONE_NEWCGROUP 0x02000000 #endif +/* 769071ac9f20b6a447410c7eaa55d1a5233ef40c (5.8) */ +#ifndef CLONE_NEWTIME +#define CLONE_NEWTIME 0x00000080 +#endif + /* Not exposed yet. Defined at include/linux/sched.h */ #ifndef PF_KTHREAD #define PF_KTHREAD 0x00200000 -- 2.47.3