diff options
| author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-17 01:05:54 +0100 |
|---|---|---|
| committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2022-08-23 17:06:16 +0200 |
| commit | 91a7bd6c38536be2062806dfbfb9df824b94b79a (patch) | |
| tree | 24f4c6e2b9bdf3bdcc0eeb7add21abeb432fe813 /gl/mountlist.h | |
| parent | 3ad5fe9d84138da1451429bfac3b9b4024393d25 (diff) | |
| download | monitoring-plugins-91a7bd6c38536be2062806dfbfb9df824b94b79a.tar.gz | |
Sync with the latest Gnulib code (1a268176f)
Diffstat (limited to 'gl/mountlist.h')
| -rw-r--r-- | gl/mountlist.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gl/mountlist.h b/gl/mountlist.h index 55877e23..fbad1246 100644 --- a/gl/mountlist.h +++ b/gl/mountlist.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* mountlist.h -- declarations for list of mounted file systems | 1 | /* mountlist.h -- declarations for list of mounted file systems |
| 2 | 2 | ||
| 3 | Copyright (C) 1991-1992, 1998, 2000-2005, 2009-2013 Free Software | 3 | Copyright (C) 1991-1992, 1998, 2000-2005, 2009-2021 Free Software |
| 4 | Foundation, Inc. | 4 | Foundation, Inc. |
| 5 | 5 | ||
| 6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
| @@ -14,7 +14,7 @@ | |||
| 14 | GNU General Public License for more details. | 14 | GNU General Public License for more details. |
| 15 | 15 | ||
| 16 | You should have received a copy of the GNU General Public License | 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 17 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ |
| 18 | 18 | ||
| 19 | #ifndef MOUNTLIST_H_ | 19 | #ifndef MOUNTLIST_H_ |
| 20 | # define MOUNTLIST_H_ | 20 | # define MOUNTLIST_H_ |
| @@ -27,15 +27,18 @@ struct mount_entry | |||
| 27 | { | 27 | { |
| 28 | char *me_devname; /* Device node name, including "/dev/". */ | 28 | char *me_devname; /* Device node name, including "/dev/". */ |
| 29 | char *me_mountdir; /* Mount point directory name. */ | 29 | char *me_mountdir; /* Mount point directory name. */ |
| 30 | char *me_mntroot; /* Directory on filesystem of device used */ | ||
| 31 | /* as root for the (bind) mount. */ | ||
| 30 | char *me_type; /* "nfs", "4.2", etc. */ | 32 | char *me_type; /* "nfs", "4.2", etc. */ |
| 31 | dev_t me_dev; /* Device number of me_mountdir. */ | 33 | dev_t me_dev; /* Device number of me_mountdir. */ |
| 32 | unsigned int me_dummy : 1; /* Nonzero for dummy file systems. */ | 34 | unsigned int me_dummy : 1; /* Nonzero for dummy file systems. */ |
| 33 | unsigned int me_remote : 1; /* Nonzero for remote fileystems. */ | 35 | unsigned int me_remote : 1; /* Nonzero for remote file systems. */ |
| 34 | unsigned int me_type_malloced : 1; /* Nonzero if me_type was malloced. */ | 36 | unsigned int me_type_malloced : 1; /* Nonzero if me_type was malloced. */ |
| 35 | struct mount_entry *me_next; | 37 | struct mount_entry *me_next; |
| 36 | }; | 38 | }; |
| 37 | 39 | ||
| 38 | struct mount_entry *read_file_system_list (bool need_fs_type); | 40 | struct mount_entry *read_file_system_list (bool need_fs_type) |
| 41 | _GL_ATTRIBUTE_MALLOC; | ||
| 39 | void free_mount_entry (struct mount_entry *entry); | 42 | void free_mount_entry (struct mount_entry *entry); |
| 40 | 43 | ||
| 41 | #endif | 44 | #endif |
