llseek.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * llseek/lseek64 syscall for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. #include "syscalls.h"
  10. #include <unistd.h>
  11. extern __typeof(lseek64) __libc_lseek64;
  12. #if defined __NR__llseek && defined __UCLIBC_HAS_LFS__
  13. # ifndef INLINE_SYSCALL
  14. # define INLINE_SYSCALL(name, nr, args...) __syscall_llseek (args)
  15. # define __NR___syscall_llseek __NR__llseek
  16. static inline _syscall5(int, __syscall_llseek, int, fd, off_t, offset_hi,
  17. off_t, offset_lo, loff_t *, result, int, whence);
  18. # endif
  19. loff_t __libc_lseek64(int fd, loff_t offset, int whence)
  20. {
  21. loff_t result;
  22. return(loff_t)(INLINE_SYSCALL (_llseek, 5, fd, (off_t) (offset >> 32),
  23. (off_t) (offset & 0xffffffff), &result, whence) ?: result);
  24. }
  25. #else
  26. extern __typeof(lseek) __libc_lseek;
  27. libc_hidden_proto(__libc_lseek)
  28. loff_t __libc_lseek64(int fd, loff_t offset, int whence)
  29. {
  30. return(loff_t)(__libc_lseek(fd, (off_t) (offset), whence));
  31. }
  32. #endif
  33. libc_hidden_proto(lseek64)
  34. weak_alias(__libc_lseek64,lseek64)
  35. libc_hidden_def(lseek64)
  36. //strong_alias(__libc_lseek64,_llseek)