Code

e54bb49ef8ae52dd53e379500fb9b1a341476ae9
[nagiosplug.git] / gl / mountlist.h
1 /* mountlist.h -- declarations for list of mounted file systems
3    Copyright (C) 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
4    Free Software Foundation, Inc.
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
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/>.  */
19 #ifndef MOUNTLIST_H_
20 # define MOUNTLIST_H_
22 # include <stdbool.h>
23 # include <sys/types.h>
25 /* A mount table entry. */
26 struct mount_entry
27 {
28   char *me_devname;             /* Device node name, including "/dev/". */
29   char *me_mountdir;            /* Mount point directory name. */
30   char *me_type;                /* "nfs", "4.2", etc. */
31   dev_t me_dev;                 /* Device number of me_mountdir. */
32   unsigned int me_dummy : 1;    /* Nonzero for dummy file systems. */
33   unsigned int me_remote : 1;   /* Nonzero for remote fileystems. */
34   unsigned int me_type_malloced : 1; /* Nonzero if me_type was malloced. */
35   struct mount_entry *me_next;
36 };
38 struct mount_entry *read_file_system_list (bool need_fs_type);
40 #endif