Code

utils_disk: fixed handling if check_disk -p is a device (np_set_best_match())
[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 2, or (at your option)
9    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, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20 #ifndef MOUNTLIST_H_
21 # define MOUNTLIST_H_
23 # include <stdbool.h>
24 # include <sys/types.h>
26 /* A mount table entry. */
27 struct mount_entry
28 {
29   char *me_devname;             /* Device node name, including "/dev/". */
30   char *me_mountdir;            /* Mount point directory name. */
31   char *me_type;                /* "nfs", "4.2", etc. */
32   dev_t me_dev;                 /* Device number of me_mountdir. */
33   unsigned int me_dummy : 1;    /* Nonzero for dummy file systems. */
34   unsigned int me_remote : 1;   /* Nonzero for remote fileystems. */
35   unsigned int me_type_malloced : 1; /* Nonzero if me_type was malloced. */
36   struct mount_entry *me_next;
37 };
39 struct mount_entry *read_file_system_list (bool need_fs_type);
41 #endif