posix_fallocate64.c 829 B

12345678910111213141516171819202122232425262728293031
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * posix_fallocate() for uClibc
  4. * http://www.opengroup.org/onlinepubs/9699919799/functions/posix_fallocate.html
  5. *
  6. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  7. *
  8. * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
  9. */
  10. #include <sys/syscall.h>
  11. #include <fcntl.h>
  12. #include <bits/kernel-features.h>
  13. #include <stdint.h>
  14. #include <errno.h>
  15. #if defined __NR_fallocate
  16. # if __WORDSIZE == 64
  17. /* Can use normal posix_fallocate() */
  18. # elif __WORDSIZE == 32
  19. extern __typeof(fallocate64) __libc_fallocate64 attribute_hidden;
  20. int posix_fallocate64(int fd, __off64_t offset, __off64_t len)
  21. {
  22. if (__libc_fallocate64(fd, 0, offset, len))
  23. return errno;
  24. return 0;
  25. }
  26. # else
  27. # error your machine is neither 32 bit or 64 bit ... it must be magical
  28. # endif
  29. #endif