[BACK]Return to mntopts.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / include

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/include/mntopts.h between version 1.3 and 1.10.20.1

version 1.3, 2003/08/07 09:44:10 version 1.10.20.1, 2008/06/10 14:51:21
Line 55  struct mntopt {
Line 55  struct mntopt {
 #define MOPT_NOATIME            { "atime",      1, MNT_NOATIME, 0 }  #define MOPT_NOATIME            { "atime",      1, MNT_NOATIME, 0 }
 #define MOPT_SYMPERM            { "symperm",    0, MNT_SYMPERM, 0 }  #define MOPT_SYMPERM            { "symperm",    0, MNT_SYMPERM, 0 }
 #define MOPT_SOFTDEP            { "softdep",    0, MNT_SOFTDEP, 0 }  #define MOPT_SOFTDEP            { "softdep",    0, MNT_SOFTDEP, 0 }
   #define MOPT_LOG                { "log",        0, MNT_LOG, 0 }
 #define MOPT_IGNORE             { "hidden",     0, MNT_IGNORE, 0 }  #define MOPT_IGNORE             { "hidden",     0, MNT_IGNORE, 0 }
   
 /* Control flags. */  /* Control flags. */
 #define MOPT_FORCE              { "force",      1, MNT_FORCE, 0 }  #define MOPT_FORCE              { "force",      0, MNT_FORCE, 0 }
 #define MOPT_UPDATE             { "update",     0, MNT_UPDATE, 0 }  #define MOPT_UPDATE             { "update",     0, MNT_UPDATE, 0 }
 #define MOPT_RELOAD             { "reload",     0, MNT_RELOAD, 0 }  #define MOPT_RELOAD             { "reload",     0, MNT_RELOAD, 0 }
 #define MOPT_GETARGS            { "getargs",    0, MNT_GETARGS, 0 }  #define MOPT_GETARGS            { "getargs",    0, MNT_GETARGS, 0 }
Line 69  struct mntopt {
Line 70  struct mntopt {
   
 /* This is parsed by mount(8), but is ignored by specific mount_*(8)s. */  /* This is parsed by mount(8), but is ignored by specific mount_*(8)s. */
 #define MOPT_AUTO               { "auto",       0, 0, 0 }  #define MOPT_AUTO               { "auto",       0, 0, 0 }
   #define MOPT_NULL               { NULL,         0, 0, 0 }
   
 #define MOPT_FSTAB_COMPAT                                               \  #define MOPT_FSTAB_COMPAT                                               \
         MOPT_RO,                                                        \          MOPT_RO,                                                        \
Line 91  struct mntopt {
Line 93  struct mntopt {
   
 __BEGIN_DECLS  __BEGIN_DECLS
 typedef struct mntoptparse *mntoptparse_t;  typedef struct mntoptparse *mntoptparse_t;
 mntoptparse_t getmntopts __P((const char *, const struct mntopt *, int *,  mntoptparse_t getmntopts(const char *, const struct mntopt *, int *, int *);
     int *));  const char *getmntoptstr(mntoptparse_t, const char *);
 const char *getmntoptstr __P((mntoptparse_t, const char *));  long getmntoptnum(mntoptparse_t, const char *);
 long getmntoptnum __P((mntoptparse_t, const char *));  void freemntopts(mntoptparse_t);
 void freemntopts __P((mntoptparse_t));  
   
 extern int getmnt_silent;  extern int getmnt_silent;
 __END_DECLS  __END_DECLS

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.10.20.1

CVSweb <webmaster@jp.NetBSD.org>