1 /* Copyright (C) 1997, 1998, 2000, 2002, 2003, 2004
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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
29 #include <sysdep-cancel.h>
30 #include <sys/syscall.h>
31 #include <bp-checks.h>
33 #include <kernel-features.h>
35 #ifdef __NR_pwrite64 /* Newer kernels renamed but it's the same. */
37 # error "__NR_pwrite and __NR_pwrite64 both defined???"
39 # define __NR_pwrite __NR_pwrite64
42 #if defined __NR_pwrite || __ASSUME_PWRITE_SYSCALL > 0
44 # if __ASSUME_PWRITE_SYSCALL == 0
45 static ssize_t
__emulate_pwrite (int fd
, const void *buf
, size_t count
,
46 off_t offset
) internal_function
;
50 __libc_pwrite (fd
, buf
, count
, offset
)
58 #if _MIPS_SIM != _ABI64
59 assert (sizeof (offset
) == 4);
64 /* First try the syscall. */
65 #if _MIPS_SIM == _ABIN32 || _MIPS_SIM == _ABI64
66 result
= INLINE_SYSCALL (pwrite
, 4, fd
, CHECK_N (buf
, count
), count
,
69 result
= INLINE_SYSCALL (pwrite
, 6, fd
, CHECK_N (buf
, count
), count
, 0,
70 __LONG_LONG_PAIR (offset
>> 31, offset
));
72 # if __ASSUME_PWRITE_SYSCALL == 0
73 if (result
== -1 && errno
== ENOSYS
)
74 /* No system call available. Use the emulation. */
75 result
= __emulate_pwrite (fd
, buf
, count
, offset
);
80 int oldtype
= LIBC_CANCEL_ASYNC ();
82 /* First try the syscall. */
83 #if _MIPS_SIM == _ABIN32 || _MIPS_SIM == _ABI64
84 result
= INLINE_SYSCALL (pwrite
, 4, fd
, CHECK_N (buf
, count
), count
, offset
);
86 result
= INLINE_SYSCALL (pwrite
, 6, fd
, CHECK_N (buf
, count
), count
, 0,
87 __LONG_LONG_PAIR (offset
>> 31, offset
));
89 # if __ASSUME_PWRITE_SYSCALL == 0
90 if (result
== -1 && errno
== ENOSYS
)
91 /* No system call available. Use the emulation. */
92 result
= __emulate_pwrite (fd
, buf
, count
, offset
);
95 LIBC_CANCEL_RESET (oldtype
);
100 strong_alias (__libc_pwrite
, __pwrite
)
101 weak_alias (__libc_pwrite
, pwrite
)
103 # define __libc_pwrite(fd, buf, count, offset) \
104 static internal_function __emulate_pwrite (fd, buf, count, offset)
107 #if __ASSUME_PWRITE_SYSCALL == 0
108 # include <sysdeps/posix/pwrite.c>