fs-type.lisp 711 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. (in-package :hurd-common)
  2. ;;
  3. ;; File system types for the stat's st-fsid field.
  4. ;; Can be found at hurd/hurd_types.h.
  5. ;;
  6. (defcenum fs-type
  7. (:ufs #x00000000)
  8. (:nfs #x00000001)
  9. (:gfs #x00000002)
  10. (:lfs #x00000003)
  11. (:sysv #x00000004)
  12. (:ftp #x00000005)
  13. (:tar #x00000006)
  14. (:ar #x00000007)
  15. (:cpio #x00000008)
  16. (:msloss #x00000009)
  17. (:cpm #x0000000a)
  18. (:hfs #x0000000b)
  19. (:dtfs #x0000000c)
  20. (:grfs #x0000000d)
  21. (:term #x0000000e)
  22. (:dev #x0000000f)
  23. (:proc #x00000010)
  24. (:ifsock #x00000011)
  25. (:afs #x00000012)
  26. (:dfs #x00000013)
  27. (:proc9 #x00000014)
  28. (:socket #x00000015)
  29. (:misc #x00000016)
  30. (:ext2fs #x00000017)
  31. (:http #x00000018)
  32. (:memfs #x00000019)
  33. (:iso9660 #x0000001a))