~ubuntu-branches/ubuntu/intrepid/parted/intrepid

« back to all changes in this revision

Viewing changes to gnulib/lib/mountlist.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-06-24 14:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080624143105-rd7yw67a9qnvh51i
Tags: 1.8.8.git.2008.03.24-7ubuntu1
* Resynchronise with Debian (LP: #237568). Remaining changes:
  - swap-uuid.dpatch: Create UUIDs on new swap partitions.
  - gptsync.dpatch: On Intel Mac systems, write a synced MBR rather than a
    protective MBR.
  - Add -fno-stack-protector on sparc.
  - sparc-new-label.dpatch: Fix sparc disk label generation. This is
    required for LDOM and parallel installations with Solaris 10.
  - loop-partitions.dpatch: Loop devices can only have one partition, so
    don't generate device names such as "/dev/loop0p1".
  - unpartitioned-disks.dpatch: Don't try to call BLKPG ioctls on
    unpartitionable disks (only implemented for loop devices at the
    moment), as they will always fail.
  - When building with gcc-4.3, add -Wno-array-bounds to CFLAGS.
  - Cell partition tables are misdetected as pc98, so disable pc98 support
    on powerpc.
  - array-bounds.dpatch: Backport patch from git to allow building with
    gcc-4.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* mountlist.h -- declarations for list of mounted file systems
 
2
 
 
3
   Copyright (C) 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
 
4
   Free Software Foundation, Inc.
 
5
 
 
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.
 
10
 
 
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.
 
15
 
 
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.  */
 
19
 
 
20
#ifndef MOUNTLIST_H_
 
21
# define MOUNTLIST_H_
 
22
 
 
23
# include <stdbool.h>
 
24
# include <sys/types.h>
 
25
 
 
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
};
 
38
 
 
39
struct mount_entry *read_file_system_list (bool need_fs_type);
 
40
 
 
41
#endif