Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / unix / sysv / linux / powerpc / powerpc32 / pread64.c
blob21c1f7b95cc84396075863a22e79558782f375e9
1 /* Copyright (C) 1997,1998,1999,2000,2002,2003,2006
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #include <errno.h>
21 #include <unistd.h>
23 #include <sysdep-cancel.h>
24 #include <sys/syscall.h>
25 #include <bp-checks.h>
27 #include <kernel-features.h>
29 #if defined __NR_pread || __ASSUME_PREAD_SYSCALL > 0
31 # if __ASSUME_PREAD_SYSCALL == 0
32 static ssize_t __emulate_pread64 (int fd, void *buf, size_t count,
33 off64_t offset) internal_function;
34 # endif
37 ssize_t
38 __libc_pread64 (fd, buf, count, offset)
39 int fd;
40 void *buf;
41 size_t count;
42 off64_t offset;
44 ssize_t result;
46 if (SINGLE_THREAD_P)
48 /* On PPC32 64bit values are aligned in odd/even register pairs. */
49 result = INLINE_SYSCALL (pread, 6, fd, CHECK_N (buf, count), count,
50 0, (long) (offset >> 32),
51 (long) offset);
52 # if __ASSUME_PREAD_SYSCALL == 0
53 if (result == -1 && errno == ENOSYS)
54 /* No system call available. Use the emulation. */
55 result = __emulate_pread64 (fd, buf, count, offset);
56 # endif
58 return result;
61 int oldtype = LIBC_CANCEL_ASYNC ();
63 /* On PPC32 64bit values are aligned in odd/even register pairs. */
64 result = INLINE_SYSCALL (pread, 6, fd, CHECK_N (buf, count), count,
65 0, (long) (offset >> 32),
66 (long) offset);
67 # if __ASSUME_PREAD_SYSCALL == 0
68 if (result == -1 && errno == ENOSYS)
69 /* No system call available. Use the emulation. */
70 result = __emulate_pread64 (fd, buf, count, offset);
71 # endif
73 LIBC_CANCEL_RESET (oldtype);
75 return result;
78 weak_alias (__libc_pread64, __pread64)
79 weak_alias (__libc_pread64, pread64)
81 # define __libc_pread64(fd, buf, count, offset) \
82 static internal_function __emulate_pread64 (fd, buf, count, offset)
83 #endif
85 # if __ASSUME_PREAD_SYSCALL == 0
86 # include <sysdeps/posix/pread64.c>
87 #endif