1 /* Copyright (C) 1997-2000, 2003, 2004, 2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 #include <sys/types.h>
25 #include <sys/syscall.h>
26 #include <bp-checks.h>
28 #include "kernel-features.h"
30 #ifdef __NR_truncate64
31 #ifndef __ASSUME_TRUNCATE64_SYSCALL
32 /* The variable is shared between all wrappers around *truncate64 calls. */
33 int __have_no_truncate64
;
36 /* Truncate the file FD refers to to LENGTH bytes. */
38 truncate64 (const char *path
, off64_t length
)
40 #ifndef __ASSUME_TRUNCATE64_SYSCALL
41 if (! __have_no_truncate64
)
44 unsigned int low
= length
& 0xffffffff;
45 unsigned int high
= length
>> 32;
46 #ifndef __ASSUME_TRUNCATE64_SYSCALL
47 int saved_errno
= errno
;
49 int result
= INLINE_SYSCALL (truncate64
, 4, CHECK_STRING (path
), 0,
50 __LONG_LONG_PAIR (high
, low
));
51 #ifndef __ASSUME_TRUNCATE64_SYSCALL
52 if (result
!= -1 || errno
!= ENOSYS
)
56 #ifndef __ASSUME_TRUNCATE64_SYSCALL
57 __set_errno (saved_errno
);
58 __have_no_truncate64
= 1;
62 #ifndef __ASSUME_TRUNCATE64_SYSCALL
63 if ((off_t
) length
!= length
)
68 return __truncate (path
, (off_t
) length
);
73 /* Use the generic implementation. */
74 # include <misc/truncate64.c>