Home | History | Annotate | Download | only in xlat
      1 /* Generated by ./xlat/gen.sh from ./xlat/umount_flags.in; do not edit. */
      2 #if !(defined(MNT_FORCE) || (defined(HAVE_DECL_MNT_FORCE) && HAVE_DECL_MNT_FORCE))
      3 # define MNT_FORCE 1
      4 #endif
      5 #if !(defined(MNT_DETACH) || (defined(HAVE_DECL_MNT_DETACH) && HAVE_DECL_MNT_DETACH))
      6 # define MNT_DETACH 2
      7 #endif
      8 #if !(defined(MNT_EXPIRE) || (defined(HAVE_DECL_MNT_EXPIRE) && HAVE_DECL_MNT_EXPIRE))
      9 # define MNT_EXPIRE 4
     10 #endif
     11 #if !(defined(UMOUNT_NOFOLLOW) || (defined(HAVE_DECL_UMOUNT_NOFOLLOW) && HAVE_DECL_UMOUNT_NOFOLLOW))
     12 # define UMOUNT_NOFOLLOW 8
     13 #endif
     14 
     15 #ifdef IN_MPERS
     16 
     17 # error static const struct xlat umount_flags in mpers mode
     18 
     19 #else
     20 
     21 static
     22 const struct xlat umount_flags[] = {
     23  XLAT(MNT_FORCE),
     24  XLAT(MNT_DETACH),
     25  XLAT(MNT_EXPIRE),
     26  XLAT(UMOUNT_NOFOLLOW),
     27  XLAT_END
     28 };
     29 
     30 #endif /* !IN_MPERS */
     31