This source file includes following definitions.
- aa_free_rlimit_rules
1
2
3
4
5
6
7
8
9
10
11 #ifndef __AA_RESOURCE_H
12 #define __AA_RESOURCE_H
13
14 #include <linux/resource.h>
15 #include <linux/sched.h>
16
17 #include "apparmorfs.h"
18
19 struct aa_profile;
20
21
22
23
24
25
26
27
28 struct aa_rlimit {
29 unsigned int mask;
30 struct rlimit limits[RLIM_NLIMITS];
31 };
32
33 extern struct aa_sfs_entry aa_sfs_entry_rlimit[];
34
35 int aa_map_resource(int resource);
36 int aa_task_setrlimit(struct aa_label *label, struct task_struct *task,
37 unsigned int resource, struct rlimit *new_rlim);
38
39 void __aa_transition_rlimits(struct aa_label *old, struct aa_label *new);
40
41 static inline void aa_free_rlimit_rules(struct aa_rlimit *rlims)
42 {
43
44 }
45
46 #endif