udev: String substitutions can be done in ENV, too
[systemd_ALT.git] / src / basic / missing_prctl.h
blob7d9e395c921419e17a4833a86f93835ca83db641
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
4 #include <linux/prctl.h>
6 /* 58319057b7847667f0c9585b9de0e8932b0fdb08 (4.3) */
7 #ifndef PR_CAP_AMBIENT
8 #define PR_CAP_AMBIENT 47
10 #define PR_CAP_AMBIENT_IS_SET 1
11 #define PR_CAP_AMBIENT_RAISE 2
12 #define PR_CAP_AMBIENT_LOWER 3
13 #define PR_CAP_AMBIENT_CLEAR_ALL 4
14 #endif
16 /* b507808ebce23561d4ff8c2aa1fb949fe402bc61 (6.3) */
17 #ifndef PR_SET_MDWE
18 #define PR_SET_MDWE 65
19 #endif
20 #ifndef PR_MDWE_REFUSE_EXEC_GAIN
21 #define PR_MDWE_REFUSE_EXEC_GAIN 1
22 #endif
24 #ifndef PR_SET_MEMORY_MERGE
25 #define PR_SET_MEMORY_MERGE 67
26 #endif