Add Changelog ...
[glibc.git] / sysdeps / unix / sysv / linux / alpha / fxstat.c
blobe53b2da13d89c0254a0b16c99646af6c00d9497b
1 /* fxstat using old-style Unix stat system call.
2 Copyright (C) 2004 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, see
17 <http://www.gnu.org/licenses/>. */
19 #define __fxstat64 __fxstat64_disable
21 #include <errno.h>
22 #include <stddef.h>
23 #include <sys/stat.h>
24 #include <kernel_stat.h>
25 #include <sysdep.h>
26 #include <sys/syscall.h>
27 #include <xstatconv.h>
29 #undef __fxstat64
32 /* Get information about the file NAME in BUF. */
33 int
34 __fxstat (int vers, int fd, struct stat *buf)
36 INTERNAL_SYSCALL_DECL (err);
37 int result;
38 struct kernel_stat kbuf;
40 #if __ASSUME_STAT64_SYSCALL > 0
41 if (vers == _STAT_VER_KERNEL64)
43 result = INTERNAL_SYSCALL (fstat64, err, 2, fd, buf);
44 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
45 return result;
46 __set_errno (INTERNAL_SYSCALL_ERRNO (result, err));
47 return -1;
49 #elif defined __NR_fstat64
50 if (vers == _STAT_VER_KERNEL64 && !__libc_missing_axp_stat64)
52 int errno_out;
53 result = INTERNAL_SYSCALL (fstat64, err, 2, fd, buf);
54 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
55 return result;
56 errno_out = INTERNAL_SYSCALL_ERRNO (result, err);
57 if (errno_out != ENOSYS)
59 __set_errno (errno_out);
60 return -1;
62 __libc_missing_axp_stat64 = 1;
64 #endif
66 result = INTERNAL_SYSCALL (fstat, err, 2, fd, &kbuf);
67 if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
68 return __xstat_conv (vers, &kbuf, buf);
69 __set_errno (INTERNAL_SYSCALL_ERRNO (result, err));
70 return -1;
72 hidden_def (__fxstat)
73 weak_alias (__fxstat, _fxstat);
74 strong_alias (__fxstat, __fxstat64);
75 hidden_ver (__fxstat, __fxstat64)