mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
* sysdeps/unix/sysv/linux/fxstat.c: Remove useless cast.
* sysdeps/unix/sysv/linux/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/xstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
This commit is contained in:
parent
2152cf7eda
commit
20973cf442
@ -1,3 +1,12 @@
|
||||
2016-10-24 Yury Norov <ynorov@caviumnetworks.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/fxstat.c: Remove useless cast.
|
||||
* sysdeps/unix/sysv/linux/lxstat.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/xstat.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
|
||||
* sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
|
||||
|
||||
2016-10-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
|
||||
* sysdeps/unix/sysv/linux/pread.c (__libc_pread): Use SYSCALL_LL_PRW.
|
||||
|
@ -36,7 +36,7 @@ int
|
||||
__fxstat (int vers, int fd, struct stat *buf)
|
||||
{
|
||||
if (vers == _STAT_VER_KERNEL)
|
||||
return INLINE_SYSCALL (fstat, 2, fd, (struct kernel_stat *) buf);
|
||||
return INLINE_SYSCALL (fstat, 2, fd, buf);
|
||||
|
||||
#ifdef STAT_IS_KERNEL_STAT
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
||||
|
@ -37,7 +37,7 @@ __fxstat (int vers, int fd, struct stat *buf)
|
||||
int result;
|
||||
|
||||
if (vers == _STAT_VER_KERNEL)
|
||||
return INLINE_SYSCALL (fstat, 2, fd, (struct kernel_stat *) buf);
|
||||
return INLINE_SYSCALL (fstat, 2, fd, buf);
|
||||
|
||||
{
|
||||
struct stat64 buf64;
|
||||
|
@ -38,7 +38,7 @@ __lxstat (int vers, const char *name, struct stat *buf)
|
||||
int result;
|
||||
|
||||
if (vers == _STAT_VER_KERNEL)
|
||||
return INLINE_SYSCALL (lstat, 2, name, (struct kernel_stat *) buf);
|
||||
return INLINE_SYSCALL (lstat, 2, name, buf);
|
||||
|
||||
{
|
||||
struct stat64 buf64;
|
||||
|
@ -38,7 +38,7 @@ __xstat (int vers, const char *name, struct stat *buf)
|
||||
int result;
|
||||
|
||||
if (vers == _STAT_VER_KERNEL)
|
||||
return INLINE_SYSCALL (stat, 2, name, (struct kernel_stat *) buf);
|
||||
return INLINE_SYSCALL (stat, 2, name, buf);
|
||||
|
||||
{
|
||||
struct stat64 buf64;
|
||||
|
@ -35,7 +35,7 @@ int
|
||||
__lxstat (int vers, const char *name, struct stat *buf)
|
||||
{
|
||||
if (vers == _STAT_VER_KERNEL)
|
||||
return INLINE_SYSCALL (lstat, 2, name, (struct kernel_stat *) buf);
|
||||
return INLINE_SYSCALL (lstat, 2, name, buf);
|
||||
|
||||
#ifdef STAT_IS_KERNEL_STAT
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
||||
|
@ -35,7 +35,7 @@ int
|
||||
__xstat (int vers, const char *name, struct stat *buf)
|
||||
{
|
||||
if (vers == _STAT_VER_KERNEL)
|
||||
return INLINE_SYSCALL (stat, 2, name, (struct kernel_stat *) buf);
|
||||
return INLINE_SYSCALL (stat, 2, name, buf);
|
||||
|
||||
#ifdef STAT_IS_KERNEL_STAT
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
||||
|
Loading…
Reference in New Issue
Block a user