summaryrefslogtreecommitdiffstats
path: root/src/basic/missing_sched.h
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-12-06 07:13:02 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-12-06 13:28:28 +0100
commit22332e339b71d5fc26989f9b069934e9cedc9169 (patch)
treee0e8354275aa2feb04ba7e7d529a56cf442f127a /src/basic/missing_sched.h
parentmissing: drop old drm related definitions (diff)
downloadsystemd-22332e339b71d5fc26989f9b069934e9cedc9169.tar.xz
systemd-22332e339b71d5fc26989f9b069934e9cedc9169.zip
missing: move sched.h related definitions to missing_sched.h
Diffstat (limited to 'src/basic/missing_sched.h')
-rw-r--r--src/basic/missing_sched.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/basic/missing_sched.h b/src/basic/missing_sched.h
new file mode 100644
index 0000000000..baa3913283
--- /dev/null
+++ b/src/basic/missing_sched.h
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
+#pragma once
+
+#include <sched.h>
+
+#ifndef CLONE_NEWCGROUP
+#define CLONE_NEWCGROUP 0x02000000
+#endif
+
+/* Not exposed yet. Defined at include/linux/sched.h */
+#ifndef PF_KTHREAD
+#define PF_KTHREAD 0x00200000
+#endif
+
+/* The maximum thread/process name length including trailing NUL byte. This mimics the kernel definition of the same
+ * name, which we need in userspace at various places but is not defined in userspace currently, neither under this
+ * name nor any other. */
+/* Not exposed yet. Defined at include/linux/sched.h */
+#ifndef TASK_COMM_LEN
+#define TASK_COMM_LEN 16
+#endif