mount.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #ifndef _SYS_MOUNT_H
  2. #define _SYS_MOUNT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <sys/ioctl.h>
  7. #define BLKROSET _IO(0x12, 93)
  8. #define BLKROGET _IO(0x12, 94)
  9. #define BLKRRPART _IO(0x12, 95)
  10. #define BLKGETSIZE _IO(0x12, 96)
  11. #define BLKFLSBUF _IO(0x12, 97)
  12. #define BLKRASET _IO(0x12, 98)
  13. #define BLKRAGET _IO(0x12, 99)
  14. #define BLKFRASET _IO(0x12,100)
  15. #define BLKFRAGET _IO(0x12,101)
  16. #define BLKSECTSET _IO(0x12,102)
  17. #define BLKSECTGET _IO(0x12,103)
  18. #define BLKSSZGET _IO(0x12,104)
  19. #define BLKBSZGET _IOR(0x12,112,size_t)
  20. #define BLKBSZSET _IOW(0x12,113,size_t)
  21. #define BLKGETSIZE64 _IOR(0x12,114,size_t)
  22. #define MS_RDONLY 1
  23. #define MS_NOSUID 2
  24. #define MS_NODEV 4
  25. #define MS_NOEXEC 8
  26. #define MS_SYNCHRONOUS 16
  27. #define MS_REMOUNT 32
  28. #define MS_MANDLOCK 64
  29. #define MS_DIRSYNC 128
  30. #define MS_NOSYMFOLLOW 256
  31. #define MS_NOATIME 1024
  32. #define MS_NODIRATIME 2048
  33. #define MS_BIND 4096
  34. #define MS_MOVE 8192
  35. #define MS_REC 16384
  36. #define MS_SILENT 32768
  37. #define MS_POSIXACL (1<<16)
  38. #define MS_UNBINDABLE (1<<17)
  39. #define MS_PRIVATE (1<<18)
  40. #define MS_SLAVE (1<<19)
  41. #define MS_SHARED (1<<20)
  42. #define MS_RELATIME (1<<21)
  43. #define MS_KERNMOUNT (1<<22)
  44. #define MS_I_VERSION (1<<23)
  45. #define MS_STRICTATIME (1<<24)
  46. #define MS_LAZYTIME (1<<25)
  47. #define MS_NOREMOTELOCK (1<<27)
  48. #define MS_NOSEC (1<<28)
  49. #define MS_BORN (1<<29)
  50. #define MS_ACTIVE (1<<30)
  51. #define MS_NOUSER (1U<<31)
  52. #define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_I_VERSION|MS_LAZYTIME)
  53. #define MS_MGC_VAL 0xc0ed0000
  54. #define MS_MGC_MSK 0xffff0000
  55. #define MNT_FORCE 1
  56. #define MNT_DETACH 2
  57. #define MNT_EXPIRE 4
  58. #define UMOUNT_NOFOLLOW 8
  59. int mount(const char *, const char *, const char *, unsigned long, const void *);
  60. int umount(const char *);
  61. int umount2(const char *, int);
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65. #endif