1 /* Copyright (C) 2005-2017 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, see
16 <http://www.gnu.org/licenses/>. */
18 /* Ho hum, if fxstatat == fxstatat64 we must get rid of the prototype or gcc
19 will complain since they don't strictly match. */
20 #define __fxstatat64 __fxstatat64_disable
28 #include <kernel_stat.h>
31 #include <sys/syscall.h>
33 #include <xstatconv.h>
35 /* Get information about the file NAME in BUF. */
37 __fxstatat (int vers
, int fd
, const char *file
, struct stat
*st
, int flag
)
40 INTERNAL_SYSCALL_DECL (err
);
41 #ifdef STAT_IS_KERNEL_STAT
44 struct kernel_stat kst
;
47 result
= INTERNAL_SYSCALL (newfstatat
, err
, 4, fd
, file
, &kst
, flag
);
48 if (!__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result
, err
), 1))
50 #ifdef STAT_IS_KERNEL_STAT
53 return __xstat_conv (vers
, &kst
, st
);
57 return INLINE_SYSCALL_ERROR_RETURN_VALUE (INTERNAL_SYSCALL_ERRNO (result
,
60 libc_hidden_def (__fxstatat
)
63 strong_alias (__fxstatat
, __fxstatat64
);
64 libc_hidden_def (__fxstatat64
)