(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / mips / ftruncate64.c
blobcdb2d56840eaa2e386ecd3b6f343f4fca1b434dd
1 /* Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <sys/types.h>
21 #include <errno.h>
22 #include <endian.h>
23 #include <unistd.h>
25 #include <sysdep.h>
26 #include <sys/syscall.h>
28 #include "kernel-features.h"
30 #ifdef __NR_ftruncate64
31 #ifndef __ASSUME_TRUNCATE64_SYSCALL
32 /* The variable is shared between all wrappers around *truncate64 calls. */
33 extern int __have_no_truncate64;
34 #endif
36 /* Truncate the file FD refers to to LENGTH bytes. */
37 int
38 __ftruncate64 (int fd, off64_t length)
40 #ifndef __ASSUME_TRUNCATE64_SYSCALL
41 if (! __have_no_truncate64)
42 #endif
44 unsigned int low = length & 0xffffffff;
45 unsigned int high = length >> 32;
46 #ifndef __ASSUME_TRUNCATE64_SYSCALL
47 int saved_errno = errno;
48 #endif
49 int result = INLINE_SYSCALL (ftruncate64, 4, fd, 0,
50 __LONG_LONG_PAIR (high, low));
51 #ifndef __ASSUME_TRUNCATE64_SYSCALL
52 if (result != -1 || errno != ENOSYS)
53 #endif
54 return result;
56 #ifndef __ASSUME_TRUNCATE64_SYSCALL
57 __set_errno (saved_errno);
58 __have_no_truncate64 = 1;
59 #endif
62 #ifndef __ASSUME_TRUNCATE64_SYSCALL
63 if ((off_t) length != length)
65 __set_errno (EINVAL);
66 return -1;
68 return __ftruncate (fd, (off_t) length);
69 #endif
71 weak_alias (__ftruncate64, ftruncate64)
73 #else
74 /* Use the generic implementation. */
75 # include <sysdeps/generic/ftruncate64.c>
76 #endif