]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/pread64.c
Update.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / pread64.c
CommitLineData
958f238f 1/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
af6f3906
UD
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
19
20#include <errno.h>
21#include <unistd.h>
0dee6738
UD
22
23#include <sysdep.h>
36ecfe56
UD
24#include <sys/syscall.h>
25
958f238f
UD
26#include "kernel-features.h"
27
28#if defined __NR_pread || __ASSUME_PREAD_SYSCALL > 0
af6f3906 29
0e103c6d
UD
30extern ssize_t __syscall_pread (int fd, void *buf, size_t count,
31 off_t offset_hi, off_t offset_lo);
af6f3906 32
958f238f 33# if __ASSUME_PREAD_SYSCALL == 0
af6f3906
UD
34static ssize_t __emulate_pread64 (int fd, void *buf, size_t count,
35 off64_t offset) internal_function;
958f238f 36# endif
af6f3906
UD
37
38
39ssize_t
40__pread64 (fd, buf, count, offset)
41 int fd;
42 void *buf;
43 size_t count;
44 off64_t offset;
45{
46 ssize_t result;
47
48 /* First try the syscall. */
0dee6738
UD
49 result = INLINE_SYSCALL (pread, 5, fd, buf, count, (off_t) (offset >> 32),
50 (off_t) (offset & 0xffffffff));
958f238f 51# if __ASSUME_PREAD_SYSCALL == 0
af6f3906
UD
52 if (result == -1 && errno == ENOSYS)
53 /* No system call available. Use the emulation. */
54 result = __emulate_pread64 (fd, buf, count, offset);
958f238f 55# endif
af6f3906
UD
56
57 return result;
58}
59
60weak_alias (__pread64, pread64)
61
958f238f 62# define __pread64(fd, buf, count, offset) \
af6f3906 63 static internal_function __emulate_pread64 (fd, buf, count, offset)
36ecfe56 64#endif
958f238f
UD
65
66# if __ASSUME_PREAD_SYSCALL == 0
67# include <sysdeps/posix/pread64.c>
68#endif