lseek64.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* Linux lseek implementation, 64 bits off_t.
  2. Copyright (C) 2016-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library. If not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <unistd.h>
  16. #include <stdint.h>
  17. #include <sys/types.h>
  18. #include <sysdep.h>
  19. #include <errno.h>
  20. #include <shlib-compat.h>
  21. off64_t
  22. __lseek64 (int fd, off64_t offset, int whence)
  23. {
  24. #ifdef __NR__llseek
  25. loff_t res;
  26. int rc = INLINE_SYSCALL_CALL (_llseek, fd,
  27. (long) (((uint64_t) (offset)) >> 32),
  28. (long) offset, &res, whence);
  29. return rc ?: res;
  30. #else
  31. return INLINE_SYSCALL_CALL (lseek, fd, offset, whence);
  32. #endif
  33. }
  34. #ifdef __OFF_T_MATCHES_OFF64_T
  35. weak_alias (__lseek64, lseek)
  36. weak_alias (__lseek64, __lseek)
  37. strong_alias (__lseek64, __libc_lseek)
  38. libc_hidden_def (__lseek)
  39. #endif
  40. strong_alias (__lseek64, __libc_lseek64)
  41. weak_alias (__lseek64, lseek64)
  42. #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_28)
  43. strong_alias (__lseek64, __compat_llseek)
  44. compat_symbol (libc, __compat_llseek, llseek, GLIBC_2_0);
  45. #endif