You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.2 KiB

  1. /*
  2. ISC License
  3. Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
  4. Permission to use, copy, modify, and/or distribute this software for any
  5. purpose with or without fee is hereby granted, provided that the above
  6. copyright notice and this permission notice appear in all copies.
  7. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #pragma once
  16. #include "fs_fstat.hpp"
  17. #include "fs_dirfd.hpp"
  18. namespace fs
  19. {
  20. static
  21. inline
  22. dev_t
  23. devid(const int fd_)
  24. {
  25. int rv;
  26. struct stat st;
  27. rv = fs::fstat(fd_,&st);
  28. if(rv == -1)
  29. return -1;
  30. return st.st_dev;
  31. }
  32. static
  33. inline
  34. dev_t
  35. devid(DIR *dh_)
  36. {
  37. int dirfd;
  38. dirfd = fs::dirfd(dh_);
  39. return fs::devid(dirfd);
  40. }
  41. }