pathconf.lisp 458 B

12345678910111213141516171819202122232425262728293031
  1. (in-package :hurd-common)
  2. ;;
  3. ;; Values for the name argument to pathconf.
  4. ;; These can be found at bits/confname.h
  5. ;;
  6. (defcenum pathconf-type
  7. :link-max
  8. :max-canon
  9. :max-input
  10. :name-max
  11. :path-max
  12. :pipe-buf
  13. :chown-restricted
  14. :no-trunc
  15. :vdisable
  16. :sync-io
  17. :async-io
  18. :prio-io
  19. :sock-maxbuf
  20. :filesizebits
  21. :rec-incr-xfer-size
  22. :rec-max-xfer-size
  23. :rec-min-xfer-size
  24. :rec-xfer-align
  25. :alloc-size-min
  26. :symlink-max
  27. :2-symlinks)