]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
missing: move sched.h related definitions to missing_sched.h
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 6 Dec 2018 06:13:02 +0000 (07:13 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 6 Dec 2018 12:28:28 +0000 (13:28 +0100)
src/basic/meson.build
src/basic/missing.h
src/basic/missing_sched.h [new file with mode: 0644]

index ca27d44be99c11cfca5c75e6b9a810549584d98d..8a1fd37c5a24ef73d8e2db071598d58895043ed5 100644 (file)
@@ -110,6 +110,7 @@ basic_sources = files('''
         missing_prctl.h
         missing_random.h
         missing_resource.h
+        missing_sched.h
         missing_securebits.h
         missing_socket.h
         missing_stat.h
index 34afbddd1036d0a54fe68190788032d47f17b626..00b903ac3089450733d82b169d09f4c877d40b9c 100644 (file)
 #define FS_NOCOW_FL 0x00800000
 #endif
 
-#ifndef CLONE_NEWCGROUP
-#define CLONE_NEWCGROUP 0x02000000
-#endif
-
 #ifndef MS_MOVE
 #define MS_MOVE 8192
 #endif
 #define FALLOC_FL_PUNCH_HOLE 0x02
 #endif
 
-#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. */
-#ifndef TASK_COMM_LEN
-#define TASK_COMM_LEN 16
-#endif
-
 #include "missing_audit.h"
 #include "missing_btrfs_tree.h"
 #include "missing_capability.h"
 #include "missing_prctl.h"
 #include "missing_random.h"
 #include "missing_resource.h"
+#include "missing_sched.h"
 #include "missing_socket.h"
 #include "missing_stdlib.h"
 #include "missing_timerfd.h"
diff --git a/src/basic/missing_sched.h b/src/basic/missing_sched.h
new file mode 100644 (file)
index 0000000..baa3913
--- /dev/null
@@ -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