mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
Remove stat wrapper functions, move them to exported symbols
This patch removes the stat, stat64, lstat, lstat64, fstat, fstat64, fstatat, and fstatat64 static wrapper and add the symbol on the libc with the expected names. Both the prototypes of the internal symbol linked by the static wrappers and the inline redirectors are also removed from the installed sys/stat.h header file. The wrapper implementation license LGPL exception is also removed since it is no longer statically linked to binaries. Internally the _STAT_VER* definitions are moved to a arch-specific xstatver.h file. The internal defines that redirects internals {f}stat{at} to their {f}xstat{at} counterparts are removed for Linux (!NO_RTLD_HIDDEN). Hurd still requires them since {f}stat{at} pulls extra objects that makes the loader build fail otherwise (I haven't dig into why exactly). Checked with a build for all affected ABIs. I also checked on x86_64, i686, powerpc, powerpc64le, sparcv9, sparc64, s390, and s390x. Reviewed-by: Lukasz Majewski <lukma@denx.de>
This commit is contained in:
parent
428985c436
commit
8ed005daf0
@ -2,10 +2,26 @@
|
||||
#include <io/sys/stat.h>
|
||||
|
||||
#ifndef _ISOMAC
|
||||
# include <xstatver.h>
|
||||
|
||||
/* Now define the internal interfaces. */
|
||||
extern int __stat (const char *__file, struct stat *__buf);
|
||||
extern int __stat64 (const char *__file, struct stat64 *__buf);
|
||||
extern int __fstat (int __fd, struct stat *__buf);
|
||||
extern int __fstat64 (int __fd, struct stat64 *__buf);
|
||||
extern int __lstat (const char *__file, struct stat *__buf);
|
||||
extern int __lstat64 (const char *__file, struct stat64 *__buf);
|
||||
extern int __fstatat (int dirfd, const char *pathname, struct stat *buf,
|
||||
int flags);
|
||||
extern int __fstatat64 (int dirfd, const char *pathname, struct stat64 *buf,
|
||||
int flags);
|
||||
# if IS_IN (libc) || (IS_IN (rtld) && !defined NO_RTLD_HIDDEN)
|
||||
hidden_proto (__stat64)
|
||||
hidden_proto (__fstat64)
|
||||
hidden_proto (__lstat64)
|
||||
hidden_proto (__fstatat64)
|
||||
# endif
|
||||
|
||||
extern int __chmod (const char *__file, __mode_t __mode);
|
||||
libc_hidden_proto (__chmod)
|
||||
extern int __fchmod (int __fd, __mode_t __mode);
|
||||
@ -15,18 +31,6 @@ extern int __mkdir (const char *__path, __mode_t __mode);
|
||||
libc_hidden_proto (__mkdir)
|
||||
extern int __mknod (const char *__path,
|
||||
__mode_t __mode, __dev_t __dev);
|
||||
#if IS_IN (libc) || (IS_IN (rtld) && !defined NO_RTLD_HIDDEN)
|
||||
hidden_proto (__fxstat)
|
||||
hidden_proto (__fxstat64)
|
||||
hidden_proto (__lxstat)
|
||||
hidden_proto (__lxstat64)
|
||||
hidden_proto (__xstat)
|
||||
hidden_proto (__xstat64)
|
||||
#endif
|
||||
extern __inline__ int __stat (const char *__path, struct stat *__statbuf)
|
||||
{
|
||||
return __xstat (_STAT_VER, __path, __statbuf);
|
||||
}
|
||||
libc_hidden_proto (__xmknod)
|
||||
extern __inline__ int __mknod (const char *__path, __mode_t __mode,
|
||||
__dev_t __dev)
|
||||
@ -35,32 +39,46 @@ extern __inline__ int __mknod (const char *__path, __mode_t __mode,
|
||||
}
|
||||
libc_hidden_proto (__xmknodat)
|
||||
|
||||
libc_hidden_proto (__fxstatat)
|
||||
libc_hidden_proto (__fxstatat64)
|
||||
|
||||
# if IS_IN (rtld) && !defined NO_RTLD_HIDDEN
|
||||
extern __typeof (__fxstatat64) __fxstatat64 attribute_hidden;
|
||||
int __fxstat (int __ver, int __fildes, struct stat *__stat_buf);
|
||||
int __xstat (int __ver, const char *__filename,
|
||||
struct stat *__stat_buf);
|
||||
int __lxstat (int __ver, const char *__filename, struct stat *__stat_buf);
|
||||
int __fxstatat (int __ver, int __fildes, const char *__filename,
|
||||
struct stat *__stat_buf, int __flag);
|
||||
int __fxstat64 (int ver, int __fildes, struct stat64 *__stat_buf);
|
||||
int __xstat64 (int ver, const char *__filename, struct stat64 *__stat_buf);
|
||||
int __lxstat64 (int ver, const char *__filename, struct stat64 *__stat_buf);
|
||||
int __fxstatat64 (int ver, int __fildes, const char *__filename,
|
||||
struct stat64 *__stat_buf, int __flag);
|
||||
libc_hidden_proto (__fxstat);
|
||||
libc_hidden_proto (__xstat);
|
||||
libc_hidden_proto (__lxstat);
|
||||
libc_hidden_proto (__fxstatat);
|
||||
# if IS_IN (libc) || (IS_IN (rtld) && !defined NO_RTLD_HIDDEN)
|
||||
hidden_proto (__fxstat64);
|
||||
hidden_proto (__xstat64);
|
||||
hidden_proto (__lxstat64);
|
||||
hidden_proto (__fxstatat64);
|
||||
# endif
|
||||
|
||||
/* The `stat', `fstat', `lstat' functions have to be handled special since
|
||||
even while not compiling the library with optimization calls to these
|
||||
functions in the shared library must reference the `xstat' etc functions.
|
||||
We have to use macros but we cannot define them in the normal headers
|
||||
since on user level we must use real functions. */
|
||||
#define stat(fname, buf) __xstat (_STAT_VER, fname, buf)
|
||||
#define lstat(fname, buf) __lxstat (_STAT_VER, fname, buf)
|
||||
#define __lstat(fname, buf) __lxstat (_STAT_VER, fname, buf)
|
||||
#define lstat64(fname, buf) __lxstat64 (_STAT_VER, fname, buf)
|
||||
#define __lstat64(fname, buf) __lxstat64 (_STAT_VER, fname, buf)
|
||||
#define stat64(fname, buf) __xstat64 (_STAT_VER, fname, buf)
|
||||
#define __stat64(fname, buf) __xstat64 (_STAT_VER, fname, buf)
|
||||
#define fstat64(fd, buf) __fxstat64 (_STAT_VER, fd, buf)
|
||||
#define __fstat64(fd, buf) __fxstat64 (_STAT_VER, fd, buf)
|
||||
#define fstat(fd, buf) __fxstat (_STAT_VER, fd, buf)
|
||||
#define __fstat(fd, buf) __fxstat (_STAT_VER, fd, buf)
|
||||
#define __fstatat(dfd, fname, buf, flag) \
|
||||
__fxstatat (_STAT_VER, dfd, fname, buf, flag)
|
||||
#define __fstatat64(dfd, fname, buf, flag) \
|
||||
__fxstatat64 (_STAT_VER, dfd, fname, buf, flag)
|
||||
# ifdef NO_RTLD_HIDDEN
|
||||
/* These are still required for Hurd. */
|
||||
# define stat(fname, buf) __xstat (_STAT_VER, fname, buf)
|
||||
# define lstat(fname, buf) __lxstat (_STAT_VER, fname, buf)
|
||||
# define __lstat(fname, buf) __lxstat (_STAT_VER, fname, buf)
|
||||
# define lstat64(fname, buf) __lxstat64 (_STAT_VER, fname, buf)
|
||||
# define __lstat64(fname, buf) __lxstat64 (_STAT_VER, fname, buf)
|
||||
# define stat64(fname, buf) __xstat64 (_STAT_VER, fname, buf)
|
||||
# define __stat64(fname, buf) __xstat64 (_STAT_VER, fname, buf)
|
||||
# define fstat64(fd, buf) __fxstat64 (_STAT_VER, fd, buf)
|
||||
# define __fstat64(fd, buf) __fxstat64 (_STAT_VER, fd, buf)
|
||||
# define fstat(fd, buf) __fxstat (_STAT_VER, fd, buf)
|
||||
# define __fstat(fd, buf) __fxstat (_STAT_VER, fd, buf)
|
||||
# define __fstatat(dfd, fname, buf, flag) \
|
||||
__fxstatat (_STAT_VER, dfd, fname, buf, flag)
|
||||
# define __fstatat64(dfd, fname, buf, flag) \
|
||||
__fxstatat64 (_STAT_VER, dfd, fname, buf, flag)
|
||||
# endif /* NO_RTLD_HIDDEN */
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
@ -60,8 +60,7 @@ routines := \
|
||||
# These routines will be omitted from the libc shared object.
|
||||
# Instead the static object files will be included in a special archive
|
||||
# linked against when the shared library will be used.
|
||||
static-only-routines = stat fstat lstat stat64 fstat64 lstat64 \
|
||||
fstatat fstatat64 mknod mknodat
|
||||
static-only-routines = mknod mknodat
|
||||
|
||||
others := pwd
|
||||
test-srcs := ftwtest
|
||||
@ -78,6 +77,7 @@ tests := test-utime test-stat test-stat2 test-lfs tst-getcwd \
|
||||
|
||||
# Likewise for statx, but we do not need static linking here.
|
||||
tests-internal += tst-statx
|
||||
tests-static += tst-statx
|
||||
|
||||
ifeq ($(run-built-tests),yes)
|
||||
tests-special += $(objpfx)ftwtest.out
|
||||
|
@ -132,6 +132,9 @@ libc {
|
||||
fcntl64;
|
||||
statx;
|
||||
}
|
||||
GLIBC_2.33 {
|
||||
stat; stat64; fstat; fstat64; lstat; lstat64; fstatat; fstatat64;
|
||||
}
|
||||
GLIBC_PRIVATE {
|
||||
__libc_fcntl64;
|
||||
__fcntl_nocancel;
|
||||
@ -141,5 +144,6 @@ libc {
|
||||
__file_change_detection_for_stat;
|
||||
__file_change_detection_for_path;
|
||||
__file_change_detection_for_fp;
|
||||
__fstat64;
|
||||
}
|
||||
}
|
||||
|
30
io/fstat.c
30
io/fstat.c
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,22 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef fstat
|
||||
#undef __fstat
|
||||
int
|
||||
attribute_hidden
|
||||
__fstat (int fd, struct stat *buf)
|
||||
{
|
||||
return __fxstat (_STAT_VER, fd, buf);
|
||||
}
|
||||
|
||||
weak_hidden_alias (__fstat, fstat)
|
||||
weak_alias (__fstat, fstat)
|
||||
|
33
io/fstat64.c
33
io/fstat64.c
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,19 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef fstat64
|
||||
#undef __fstat64
|
||||
int
|
||||
attribute_hidden
|
||||
fstat64 (int fd, struct stat64 *buf)
|
||||
__fstat64 (int fd, struct stat64 *buf)
|
||||
{
|
||||
return __fxstat64 (_STAT_VER, fd, buf);
|
||||
}
|
||||
hidden_def (__fstat64)
|
||||
weak_alias (__fstat64, fstat64)
|
||||
|
33
io/fstatat.c
33
io/fstatat.c
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,19 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef fstatat
|
||||
#undef __fstatat
|
||||
int
|
||||
attribute_hidden
|
||||
fstatat (int fd, const char *file, struct stat *buf, int flag)
|
||||
__fstatat (int fd, const char *file, struct stat *buf, int flag)
|
||||
{
|
||||
return __fxstatat (_STAT_VER, fd, file, buf, flag);
|
||||
}
|
||||
|
||||
weak_alias (__fstatat, fstatat)
|
||||
|
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,19 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef fstatat64
|
||||
#undef __fstatat64
|
||||
int
|
||||
attribute_hidden
|
||||
fstatat64 (int fd, const char *file, struct stat64 *buf, int flag)
|
||||
__fstatat64 (int fd, const char *file, struct stat64 *buf, int flag)
|
||||
{
|
||||
return __fxstatat64 (_STAT_VER, fd, file, buf, flag);
|
||||
}
|
||||
hidden_def (__fstatat64)
|
||||
weak_alias (__fstatat64, fstatat64)
|
||||
|
30
io/lstat.c
30
io/lstat.c
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,22 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef lstat
|
||||
#undef __lstat
|
||||
int
|
||||
attribute_hidden
|
||||
__lstat (const char *file, struct stat *buf)
|
||||
{
|
||||
return __lxstat (_STAT_VER, file, buf);
|
||||
}
|
||||
|
||||
weak_hidden_alias (__lstat, lstat)
|
||||
weak_alias (__lstat, lstat)
|
||||
|
33
io/lstat64.c
33
io/lstat64.c
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,19 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef lstat64
|
||||
#undef __lstat64
|
||||
int
|
||||
attribute_hidden
|
||||
lstat64 (const char *file, struct stat64 *buf)
|
||||
__lstat64 (const char *file, struct stat64 *buf)
|
||||
{
|
||||
return __lxstat64 (_STAT_VER, file, buf);
|
||||
}
|
||||
hidden_def (__lstat64)
|
||||
weak_alias (__lstat64, lstat64)
|
||||
|
31
io/stat.c
31
io/stat.c
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,21 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef stat
|
||||
#undef __stat
|
||||
int
|
||||
attribute_hidden
|
||||
__stat (const char *file, struct stat *buf)
|
||||
{
|
||||
return __xstat (_STAT_VER, file, buf);
|
||||
}
|
||||
|
||||
weak_hidden_alias (__stat, stat)
|
||||
weak_alias (__stat, stat)
|
||||
|
33
io/stat64.c
33
io/stat64.c
@ -6,23 +6,6 @@
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
In addition to the permissions in the GNU Lesser General Public
|
||||
License, the Free Software Foundation gives you unlimited
|
||||
permission to link the compiled version of this file with other
|
||||
programs, and to distribute those programs without any restriction
|
||||
coming from the use of this file. (The GNU Lesser General Public
|
||||
License restrictions do apply in other respects; for example, they
|
||||
cover modification of the file, and distribution when not linked
|
||||
into another program.)
|
||||
|
||||
Note that people who make modified versions of this file are not
|
||||
obligated to grant this special exception for their modified
|
||||
versions; it is their choice whether to do so. The GNU Lesser
|
||||
General Public License gives permission to release a modified
|
||||
version without this exception; this exception also makes it
|
||||
possible to release a modified version which carries forward this
|
||||
exception.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
@ -34,19 +17,11 @@
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This definition is only used if inlining fails for this function; see
|
||||
the last page of <sys/stat.h>. The real work is done by the `x'
|
||||
function which is passed a version number argument. We arrange in the
|
||||
makefile that when not inlined this function is always statically
|
||||
linked; that way a dynamically-linked executable always encodes the
|
||||
version number corresponding to the data structures it uses, so the `x'
|
||||
functions in the shared library can adapt without needing to recompile
|
||||
all callers. */
|
||||
|
||||
#undef stat64
|
||||
#undef __stat64
|
||||
int
|
||||
attribute_hidden
|
||||
stat64 (const char *file, struct stat64 *buf)
|
||||
__stat64 (const char *file, struct stat64 *buf)
|
||||
{
|
||||
return __xstat64 (_STAT_VER, file, buf);
|
||||
}
|
||||
hidden_def (__stat64)
|
||||
weak_alias (__stat64, stat64)
|
||||
|
129
io/sys/stat.h
129
io/sys/stat.h
@ -368,73 +368,10 @@ extern int utimensat (int __fd, const char *__path,
|
||||
extern int futimens (int __fd, const struct timespec __times[2]) __THROW;
|
||||
#endif
|
||||
|
||||
/* To allow the `struct stat' structure and the file type `mode_t'
|
||||
bits to vary without changing shared library major version number,
|
||||
the `stat' family of functions and `mknod' are in fact inline
|
||||
wrappers around calls to `xstat', `fxstat', `lxstat', and `xmknod',
|
||||
which all take a leading version-number argument designating the
|
||||
data structure and bits used. <bits/stat.h> defines _STAT_VER with
|
||||
the version number corresponding to `struct stat' as defined in
|
||||
that file; and _MKNOD_VER with the version number corresponding to
|
||||
the S_IF* macros defined therein. It is arranged that when not
|
||||
inlined these function are always statically linked; that way a
|
||||
dynamically-linked executable always encodes the version number
|
||||
corresponding to the data structures it uses, so the `x' functions
|
||||
in the shared library can adapt without needing to recompile all
|
||||
callers. */
|
||||
|
||||
#ifndef _STAT_VER
|
||||
# define _STAT_VER 0
|
||||
#endif
|
||||
#ifndef _MKNOD_VER
|
||||
# define _MKNOD_VER 0
|
||||
#endif
|
||||
|
||||
/* Wrappers for stat and mknod system calls. */
|
||||
#ifndef __USE_FILE_OFFSET64
|
||||
extern int __fxstat (int __ver, int __fildes, struct stat *__stat_buf)
|
||||
__THROW __nonnull ((3));
|
||||
extern int __xstat (int __ver, const char *__filename,
|
||||
struct stat *__stat_buf) __THROW __nonnull ((2, 3));
|
||||
extern int __lxstat (int __ver, const char *__filename,
|
||||
struct stat *__stat_buf) __THROW __nonnull ((2, 3));
|
||||
extern int __fxstatat (int __ver, int __fildes, const char *__filename,
|
||||
struct stat *__stat_buf, int __flag)
|
||||
__THROW __nonnull ((3, 4));
|
||||
#else
|
||||
# ifdef __REDIRECT_NTH
|
||||
extern int __REDIRECT_NTH (__fxstat, (int __ver, int __fildes,
|
||||
struct stat *__stat_buf), __fxstat64)
|
||||
__nonnull ((3));
|
||||
extern int __REDIRECT_NTH (__xstat, (int __ver, const char *__filename,
|
||||
struct stat *__stat_buf), __xstat64)
|
||||
__nonnull ((2, 3));
|
||||
extern int __REDIRECT_NTH (__lxstat, (int __ver, const char *__filename,
|
||||
struct stat *__stat_buf), __lxstat64)
|
||||
__nonnull ((2, 3));
|
||||
extern int __REDIRECT_NTH (__fxstatat, (int __ver, int __fildes,
|
||||
const char *__filename,
|
||||
struct stat *__stat_buf, int __flag),
|
||||
__fxstatat64) __nonnull ((3, 4));
|
||||
|
||||
# else
|
||||
# define __fxstat __fxstat64
|
||||
# define __xstat __xstat64
|
||||
# define __lxstat __lxstat64
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef __USE_LARGEFILE64
|
||||
extern int __fxstat64 (int __ver, int __fildes, struct stat64 *__stat_buf)
|
||||
__THROW __nonnull ((3));
|
||||
extern int __xstat64 (int __ver, const char *__filename,
|
||||
struct stat64 *__stat_buf) __THROW __nonnull ((2, 3));
|
||||
extern int __lxstat64 (int __ver, const char *__filename,
|
||||
struct stat64 *__stat_buf) __THROW __nonnull ((2, 3));
|
||||
extern int __fxstatat64 (int __ver, int __fildes, const char *__filename,
|
||||
struct stat64 *__stat_buf, int __flag)
|
||||
__THROW __nonnull ((3, 4));
|
||||
#endif
|
||||
extern int __xmknod (int __ver, const char *__path, __mode_t __mode,
|
||||
__dev_t *__dev) __THROW __nonnull ((2, 4));
|
||||
|
||||
@ -447,37 +384,6 @@ extern int __xmknodat (int __ver, int __fd, const char *__path,
|
||||
#endif
|
||||
|
||||
#ifdef __USE_EXTERN_INLINES
|
||||
/* Inlined versions of the real stat and mknod functions. */
|
||||
|
||||
__extern_inline int
|
||||
__NTH (stat (const char *__path, struct stat *__statbuf))
|
||||
{
|
||||
return __xstat (_STAT_VER, __path, __statbuf);
|
||||
}
|
||||
|
||||
# if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
|
||||
__extern_inline int
|
||||
__NTH (lstat (const char *__path, struct stat *__statbuf))
|
||||
{
|
||||
return __lxstat (_STAT_VER, __path, __statbuf);
|
||||
}
|
||||
# endif
|
||||
|
||||
__extern_inline int
|
||||
__NTH (fstat (int __fd, struct stat *__statbuf))
|
||||
{
|
||||
return __fxstat (_STAT_VER, __fd, __statbuf);
|
||||
}
|
||||
|
||||
# ifdef __USE_ATFILE
|
||||
__extern_inline int
|
||||
__NTH (fstatat (int __fd, const char *__filename, struct stat *__statbuf,
|
||||
int __flag))
|
||||
{
|
||||
return __fxstatat (_STAT_VER, __fd, __filename, __statbuf, __flag);
|
||||
}
|
||||
# endif
|
||||
|
||||
# ifdef __USE_MISC
|
||||
__extern_inline int
|
||||
__NTH (mknod (const char *__path, __mode_t __mode, __dev_t __dev))
|
||||
@ -496,41 +402,6 @@ __NTH (mknodat (int __fd, const char *__path, __mode_t __mode,
|
||||
}
|
||||
# endif
|
||||
# endif
|
||||
|
||||
# if defined __USE_LARGEFILE64 \
|
||||
&& (! defined __USE_FILE_OFFSET64 \
|
||||
|| (defined __REDIRECT_NTH && defined __OPTIMIZE__))
|
||||
__extern_inline int
|
||||
__NTH (stat64 (const char *__path, struct stat64 *__statbuf))
|
||||
{
|
||||
return __xstat64 (_STAT_VER, __path, __statbuf);
|
||||
}
|
||||
|
||||
# if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
|
||||
__extern_inline int
|
||||
__NTH (lstat64 (const char *__path, struct stat64 *__statbuf))
|
||||
{
|
||||
return __lxstat64 (_STAT_VER, __path, __statbuf);
|
||||
}
|
||||
# endif
|
||||
|
||||
__extern_inline int
|
||||
__NTH (fstat64 (int __fd, struct stat64 *__statbuf))
|
||||
{
|
||||
return __fxstat64 (_STAT_VER, __fd, __statbuf);
|
||||
}
|
||||
|
||||
# ifdef __USE_ATFILE
|
||||
__extern_inline int
|
||||
__NTH (fstatat64 (int __fd, const char *__filename, struct stat64 *__statbuf,
|
||||
int __flag))
|
||||
{
|
||||
return __fxstatat64 (_STAT_VER, __fd, __filename, __statbuf, __flag);
|
||||
}
|
||||
# endif
|
||||
|
||||
# endif
|
||||
|
||||
#endif
|
||||
|
||||
__END_DECLS
|
||||
|
@ -16,6 +16,7 @@
|
||||
along with this program; if not, see <https://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <alloca.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* This file uses the getaddrinfo code but it compiles it without NSCD
|
||||
support. We just need a few symbol renames. */
|
||||
@ -32,6 +33,10 @@
|
||||
#define __libc_use_alloca(size) (size <= __MAX_ALLOCA_CUTOFF)
|
||||
#define __getifaddrs getifaddrs
|
||||
#define __freeifaddrs freeifaddrs
|
||||
#undef __fstat64
|
||||
#define __fstat64 fstat64
|
||||
#undef __stat64
|
||||
#define __stat64 stat64
|
||||
|
||||
/* We are nscd, so we don't want to be talking to ourselves. */
|
||||
#undef USE_NSCD
|
||||
|
3
sysdeps/generic/xstatver.h
Normal file
3
sysdeps/generic/xstatver.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER 0
|
@ -2191,7 +2191,15 @@ GLIBC_2.32 thrd_current F
|
||||
GLIBC_2.32 thrd_equal F
|
||||
GLIBC_2.32 thrd_sleep F
|
||||
GLIBC_2.32 thrd_yield F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2138,7 +2138,7 @@ static void
|
||||
gaiconf_reload (void)
|
||||
{
|
||||
struct stat64 st;
|
||||
if (stat64 (GAICONF_FNAME, &st) != 0
|
||||
if (__stat64 (GAICONF_FNAME, &st) != 0
|
||||
|| !check_gaiconf_mtime (&st))
|
||||
gaiconf_init ();
|
||||
}
|
||||
|
@ -2160,4 +2160,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
@ -22,15 +22,6 @@
|
||||
#ifndef _BITS_STAT_H
|
||||
#define _BITS_STAT_H 1
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_KERNEL 0
|
||||
#define _STAT_VER_GLIBC2 1
|
||||
#define _STAT_VER_GLIBC2_1 2
|
||||
#define _STAT_VER_KERNEL64 3
|
||||
#define _STAT_VER_GLIBC2_3_4 3
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 0
|
||||
|
||||
|
@ -2242,7 +2242,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
9
sysdeps/unix/sysv/linux/alpha/xstatver.h
Normal file
9
sysdeps/unix/sysv/linux/alpha/xstatver.h
Normal file
@ -0,0 +1,9 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_KERNEL 0
|
||||
#define _STAT_VER_GLIBC2 1
|
||||
#define _STAT_VER_GLIBC2_1 2
|
||||
#define _STAT_VER_KERNEL64 3
|
||||
#define _STAT_VER_GLIBC2_3_4 3
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
@ -1920,4 +1920,12 @@ GLIBC_2.32 wprintf F
|
||||
GLIBC_2.32 write F
|
||||
GLIBC_2.32 writev F
|
||||
GLIBC_2.32 wscanf F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
@ -141,7 +141,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _Exit F
|
||||
GLIBC_2.4 _IO_2_1_stderr_ D 0xa0
|
||||
GLIBC_2.4 _IO_2_1_stdin_ D 0xa0
|
||||
|
@ -23,12 +23,6 @@
|
||||
#define _BITS_STAT_H 1
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX /* The one defined below. */
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 1
|
||||
#define _MKNOD_VER_SVR4 2
|
||||
|
@ -2104,4 +2104,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
@ -26,17 +26,6 @@
|
||||
#include <bits/endian.h>
|
||||
#include <bits/wordsize.h>
|
||||
|
||||
/* 64-bit libc uses the kernel's 'struct stat', accessed via the
|
||||
stat() syscall; 32-bit libc uses the kernel's 'struct stat64'
|
||||
and accesses it via the stat64() syscall. All the various
|
||||
APIs offered by libc use the kernel shape for their struct stat
|
||||
structure; the only difference is that 32-bit programs not
|
||||
using __USE_FILE_OFFSET64 only see the low 32 bits of some
|
||||
of the fields (specifically st_ino, st_size, and st_blocks). */
|
||||
#define _STAT_VER_KERNEL 0
|
||||
#define _STAT_VER_LINUX 0
|
||||
#define _STAT_VER _STAT_VER_KERNEL
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 0
|
||||
|
||||
|
5
sysdeps/unix/sysv/linux/generic/xstatver.h
Normal file
5
sysdeps/unix/sysv/linux/generic/xstatver.h
Normal file
@ -0,0 +1,5 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_KERNEL 0
|
||||
#define _STAT_VER_LINUX 0
|
||||
#define _STAT_VER _STAT_VER_KERNEL
|
@ -2063,7 +2063,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2229,7 +2229,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -22,11 +22,6 @@
|
||||
#ifndef _BITS_STAT_H
|
||||
#define _BITS_STAT_H 1
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_KERNEL 0
|
||||
#define _STAT_VER_LINUX 1
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 0
|
||||
|
||||
|
@ -2095,7 +2095,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
5
sysdeps/unix/sysv/linux/ia64/xstatver.h
Normal file
5
sysdeps/unix/sysv/linux/ia64/xstatver.h
Normal file
@ -0,0 +1,5 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_KERNEL 0
|
||||
#define _STAT_VER_LINUX 1
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
@ -22,13 +22,6 @@
|
||||
#ifndef _BITS_STAT_H
|
||||
#define _BITS_STAT_H 1
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX /* The one defined below. */
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 1
|
||||
#define _MKNOD_VER_SVR4 2
|
||||
|
@ -2175,7 +2175,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
7
sysdeps/unix/sysv/linux/m68k/xstatver.h
Normal file
7
sysdeps/unix/sysv/linux/m68k/xstatver.h
Normal file
@ -0,0 +1,7 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
@ -2155,4 +2155,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
@ -23,13 +23,6 @@
|
||||
#ifndef _BITS_STAT_H
|
||||
#define _BITS_STAT_H 1
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX /* The one defined below. */
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 1
|
||||
#define _MKNOD_VER_SVR4 2
|
||||
|
@ -2152,4 +2152,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
7
sysdeps/unix/sysv/linux/microblaze/xstatver.h
Normal file
7
sysdeps/unix/sysv/linux/microblaze/xstatver.h
Normal file
@ -0,0 +1,7 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX /* The one defined below. */
|
@ -24,13 +24,6 @@
|
||||
|
||||
#include <sgidefs.h>
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX /* The one defined below. */
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 1
|
||||
#define _MKNOD_VER_SVR4 2
|
||||
|
@ -2146,7 +2146,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2152,7 +2152,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2146,7 +2146,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
7
sysdeps/unix/sysv/linux/mips/xstatver.h
Normal file
7
sysdeps/unix/sysv/linux/mips/xstatver.h
Normal file
@ -0,0 +1,7 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
@ -2193,4 +2193,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
@ -24,17 +24,6 @@
|
||||
|
||||
#include <bits/wordsize.h>
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#if __WORDSIZE == 32
|
||||
# define _STAT_VER _STAT_VER_LINUX
|
||||
#else
|
||||
# define _STAT_VER _STAT_VER_KERNEL
|
||||
#endif
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 1
|
||||
#define _MKNOD_VER_SVR4 2
|
||||
|
@ -2202,7 +2202,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2235,7 +2235,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2065,7 +2065,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2355,4 +2355,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
11
sysdeps/unix/sysv/linux/powerpc/xstatver.h
Normal file
11
sysdeps/unix/sysv/linux/powerpc/xstatver.h
Normal file
@ -0,0 +1,11 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#if __WORDSIZE == 32
|
||||
# define _STAT_VER _STAT_VER_LINUX
|
||||
#else
|
||||
# define _STAT_VER _STAT_VER_KERNEL
|
||||
#endif
|
@ -793,6 +793,10 @@ GLIBC_2.33 fseeko64 F
|
||||
GLIBC_2.33 fsetpos F
|
||||
GLIBC_2.33 fsetpos64 F
|
||||
GLIBC_2.33 fsetxattr F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 fstatfs F
|
||||
GLIBC_2.33 fstatfs64 F
|
||||
GLIBC_2.33 fstatvfs F
|
||||
@ -1164,6 +1168,8 @@ GLIBC_2.33 lsearch F
|
||||
GLIBC_2.33 lseek F
|
||||
GLIBC_2.33 lseek64 F
|
||||
GLIBC_2.33 lsetxattr F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 lutimes F
|
||||
GLIBC_2.33 madvise F
|
||||
GLIBC_2.33 makecontext F
|
||||
@ -1631,6 +1637,8 @@ GLIBC_2.33 srandom F
|
||||
GLIBC_2.33 srandom_r F
|
||||
GLIBC_2.33 sscanf F
|
||||
GLIBC_2.33 ssignal F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.33 statfs F
|
||||
GLIBC_2.33 statfs64 F
|
||||
GLIBC_2.33 statvfs F
|
||||
|
@ -2122,4 +2122,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
@ -25,21 +25,9 @@
|
||||
#include <bits/wordsize.h>
|
||||
|
||||
#if __WORDSIZE == 64
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
# define _STAT_VER_KERNEL 0
|
||||
# define _STAT_VER_LINUX 1
|
||||
# define _STAT_VER _STAT_VER_LINUX
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 0
|
||||
#else
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
# define _STAT_VER_LINUX_OLD 1
|
||||
# define _STAT_VER_KERNEL 1
|
||||
# define _STAT_VER_SVR4 2
|
||||
# define _STAT_VER_LINUX 3
|
||||
# define _STAT_VER _STAT_VER_LINUX
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
# define _MKNOD_VER_LINUX 1
|
||||
# define _MKNOD_VER_SVR4 2
|
||||
|
@ -2200,7 +2200,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2101,7 +2101,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
16
sysdeps/unix/sysv/linux/s390/xstatver.h
Normal file
16
sysdeps/unix/sysv/linux/s390/xstatver.h
Normal file
@ -0,0 +1,16 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
|
||||
#include <bits/wordsize.h>
|
||||
|
||||
#if __WORDSIZE == 64
|
||||
# define _STAT_VER_KERNEL 0
|
||||
# define _STAT_VER_LINUX 1
|
||||
# define _STAT_VER _STAT_VER_LINUX
|
||||
#else
|
||||
# define _STAT_VER_LINUX_OLD 1
|
||||
# define _STAT_VER_KERNEL 1
|
||||
# define _STAT_VER_SVR4 2
|
||||
# define _STAT_VER_LINUX 3
|
||||
# define _STAT_VER _STAT_VER_LINUX
|
||||
#endif
|
@ -2070,7 +2070,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2067,7 +2067,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -22,13 +22,6 @@
|
||||
#ifndef _BITS_STAT_H
|
||||
#define _BITS_STAT_H 1
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX /* The one defined below. */
|
||||
|
||||
/* Versions of the `xmknod' interface. */
|
||||
#define _MKNOD_VER_LINUX 1
|
||||
#define _MKNOD_VER_SVR4 2
|
||||
|
@ -2191,7 +2191,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2118,7 +2118,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
7
sysdeps/unix/sysv/linux/sparc/xstatver.h
Normal file
7
sysdeps/unix/sysv/linux/sparc/xstatver.h
Normal file
@ -0,0 +1,7 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX /* The one defined below. */
|
@ -24,25 +24,15 @@
|
||||
|
||||
/* Versions of the `struct stat' data structure. */
|
||||
#ifndef __x86_64__
|
||||
# define _STAT_VER_LINUX_OLD 1
|
||||
# define _STAT_VER_KERNEL 1
|
||||
# define _STAT_VER_SVR4 2
|
||||
# define _STAT_VER_LINUX 3
|
||||
|
||||
/* i386 versions of the `xmknod' interface. */
|
||||
# define _MKNOD_VER_LINUX 1
|
||||
# define _MKNOD_VER_SVR4 2
|
||||
# define _MKNOD_VER _MKNOD_VER_LINUX /* The bits defined below. */
|
||||
#else
|
||||
# define _STAT_VER_KERNEL 0
|
||||
# define _STAT_VER_LINUX 1
|
||||
|
||||
/* x86-64 versions of the `xmknod' interface. */
|
||||
# define _MKNOD_VER_LINUX 0
|
||||
#endif
|
||||
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
||||
|
||||
struct stat
|
||||
{
|
||||
__dev_t st_dev; /* Device. */
|
||||
|
12
sysdeps/unix/sysv/linux/x86/xstatver.h
Normal file
12
sysdeps/unix/sysv/linux/x86/xstatver.h
Normal file
@ -0,0 +1,12 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#ifndef __x86_64__
|
||||
# define _STAT_VER_LINUX_OLD 1
|
||||
# define _STAT_VER_KERNEL 1
|
||||
# define _STAT_VER_SVR4 2
|
||||
# define _STAT_VER_LINUX 3
|
||||
#else
|
||||
# define _STAT_VER_KERNEL 0
|
||||
# define _STAT_VER_LINUX 1
|
||||
#endif
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
@ -2076,7 +2076,15 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2173,4 +2173,12 @@ GLIBC_2.32 sigabbrev_np F
|
||||
GLIBC_2.32 sigdescr_np F
|
||||
GLIBC_2.32 strerrordesc_np F
|
||||
GLIBC_2.32 strerrorname_np F
|
||||
GLIBC_2.33 fstat F
|
||||
GLIBC_2.33 fstat64 F
|
||||
GLIBC_2.33 fstatat F
|
||||
GLIBC_2.33 fstatat64 F
|
||||
GLIBC_2.33 lstat F
|
||||
GLIBC_2.33 lstat64 F
|
||||
GLIBC_2.33 mallinfo2 F
|
||||
GLIBC_2.33 stat F
|
||||
GLIBC_2.33 stat64 F
|
||||
|
7
sysdeps/unix/sysv/linux/xstatver.h
Normal file
7
sysdeps/unix/sysv/linux/xstatver.h
Normal file
@ -0,0 +1,7 @@
|
||||
/* Versions of the 'struct stat' data structure used in compatibility xstat
|
||||
functions. */
|
||||
#define _STAT_VER_LINUX_OLD 1
|
||||
#define _STAT_VER_KERNEL 1
|
||||
#define _STAT_VER_SVR4 2
|
||||
#define _STAT_VER_LINUX 3
|
||||
#define _STAT_VER _STAT_VER_LINUX
|
Loading…
Reference in New Issue
Block a user