aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/mips/kernel_stat.h
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-07-17 23:49:50 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-09-11 14:35:11 -0300
commit0b1c222cd04b0de2fec1b116a68df9118ec1c540 (patch)
treec3d8314b62f9b8c3e460d2b82960a91838b69e7f /sysdeps/unix/sysv/linux/mips/kernel_stat.h
parent90e1600f4f9e3a3dcbf0a91e23098b052c975a9d (diff)
downloadglibc-0b1c222cd04b0de2fec1b116a68df9118ec1c540.zip
glibc-0b1c222cd04b0de2fec1b116a68df9118ec1c540.tar.gz
glibc-0b1c222cd04b0de2fec1b116a68df9118ec1c540.tar.bz2
linux: Define STAT64_IS_KERNEL_STAT64
It indicates that the glibc export stat64 is similar in size and layout of the kernel stat64 used on the syscall. It is not currently used on stat implementation, but the idea is to indicate whether to use the kernel_stat to issue on the syscall on the *stat*64 variant (more specifically on mips which its exported ABI does not match the kernel). Reviewed-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/kernel_stat.h')
-rw-r--r--sysdeps/unix/sysv/linux/mips/kernel_stat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/kernel_stat.h b/sysdeps/unix/sysv/linux/mips/kernel_stat.h
index e75f3e8..21dba2d 100644
--- a/sysdeps/unix/sysv/linux/mips/kernel_stat.h
+++ b/sysdeps/unix/sysv/linux/mips/kernel_stat.h
@@ -1,3 +1,6 @@
+#ifndef _KERNEL_STAT_H
+#define _KERNEL_STAT_H
+
#include <sgidefs.h>
/* As tempting as it is to define XSTAT_IS_XSTAT64 for n64, the
userland data structures are not identical, because of different
@@ -57,5 +60,8 @@ struct kernel_stat
#endif
#define STAT_IS_KERNEL_STAT 0
+#define STAT64_IS_KERNEL_STAT64 0
#define XSTAT_IS_XSTAT64 0
#define STATFS_IS_STATFS64 0
+
+#endif