diff options
Diffstat (limited to 'lib/utils_disk.h')
-rw-r--r-- | lib/utils_disk.h | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/lib/utils_disk.h b/lib/utils_disk.h deleted file mode 100644 index c5e81dc1..00000000 --- a/lib/utils_disk.h +++ /dev/null | |||
@@ -1,48 +0,0 @@ | |||
1 | /* Header file for utils_disk */ | ||
2 | |||
3 | #include "mountlist.h" | ||
4 | #include "utils_base.h" | ||
5 | #include "regex.h" | ||
6 | |||
7 | struct name_list { | ||
8 | char *name; | ||
9 | struct name_list *next; | ||
10 | }; | ||
11 | |||
12 | struct regex_list { | ||
13 | regex_t regex; | ||
14 | struct regex_list *next; | ||
15 | }; | ||
16 | |||
17 | struct parameter_list { | ||
18 | char *name; | ||
19 | thresholds *freespace_bytes; | ||
20 | thresholds *freespace_units; | ||
21 | thresholds *freespace_percent; | ||
22 | thresholds *usedspace_bytes; | ||
23 | thresholds *usedspace_units; | ||
24 | thresholds *usedspace_percent; | ||
25 | thresholds *usedinodes_percent; | ||
26 | thresholds *freeinodes_percent; | ||
27 | char *group; | ||
28 | struct mount_entry *best_match; | ||
29 | struct parameter_list *name_next; | ||
30 | struct parameter_list *name_prev; | ||
31 | uintmax_t total, available, available_to_root, used, inodes_free, inodes_free_to_root, inodes_used, inodes_total; | ||
32 | double dfree_pct, dused_pct; | ||
33 | uint64_t dused_units, dfree_units, dtotal_units; | ||
34 | double dused_inodes_percent, dfree_inodes_percent; | ||
35 | }; | ||
36 | |||
37 | void np_add_name(struct name_list **list, const char *name); | ||
38 | bool np_find_name(struct name_list *list, const char *name); | ||
39 | bool np_seen_name(struct name_list *list, const char *name); | ||
40 | int np_add_regex(struct regex_list **list, const char *regex, int cflags); | ||
41 | bool np_find_regmatch(struct regex_list *list, const char *name); | ||
42 | struct parameter_list *np_add_parameter(struct parameter_list **list, const char *name); | ||
43 | struct parameter_list *np_find_parameter(struct parameter_list *list, const char *name); | ||
44 | struct parameter_list *np_del_parameter(struct parameter_list *item, struct parameter_list *prev); | ||
45 | |||
46 | int search_parameter_list(struct parameter_list *list, const char *name); | ||
47 | void np_set_best_match(struct parameter_list *desired, struct mount_entry *mount_list, bool exact); | ||
48 | bool np_regex_match_mount_entry(struct mount_entry *me, regex_t *re); | ||