1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2003-06-26  Steven Munroe  <sjmunroe@us.ibm.com>

	* sysdeps/unix/sysv/linux/xstatconv.h [!STAT_IS_KERNEL_STAT]:
	Conditionalize function definitions that use struct kernel_stat.
	* sysdeps/unix/sysv/linux/fxstat.c: Remove __syscall_fstat extern.
	* sysdeps/unix/sysv/linux/lxstat.c: Remove __syscall_lstat extern.
	* sysdeps/unix/sysv/linux/xstat.c: Remove __syscall_stat extern.
This commit is contained in:
Ulrich Drepper
2003-06-28 08:11:28 +00:00
parent b4431a7270
commit b14be6fe43
5 changed files with 10 additions and 9 deletions

View File

@ -1,3 +1,11 @@
2003-06-26 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/unix/sysv/linux/xstatconv.h [!STAT_IS_KERNEL_STAT]:
Conditionalize function definitions that use struct kernel_stat.
* sysdeps/unix/sysv/linux/fxstat.c: Remove __syscall_fstat extern.
* sysdeps/unix/sysv/linux/lxstat.c: Remove __syscall_lstat extern.
* sysdeps/unix/sysv/linux/xstat.c: Remove __syscall_stat extern.
2003-06-28 Ulrich Drepper <drepper@redhat.com> 2003-06-28 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/s390/semtimedop.c (semtimedop): Add real * sysdeps/unix/sysv/linux/s390/semtimedop.c (semtimedop): Add real

View File

@ -33,8 +33,6 @@
#include <xstatconv.h> #include <xstatconv.h>
extern int __syscall_fstat (int, struct kernel_stat *__unbounded);
/* Get information about the file FD in BUF. */ /* Get information about the file FD in BUF. */
int int
__fxstat (int vers, int fd, struct stat *buf) __fxstat (int vers, int fd, struct stat *buf)

View File

@ -32,9 +32,6 @@
#include <xstatconv.h> #include <xstatconv.h>
extern int __syscall_lstat (const char *__unbounded,
struct kernel_stat *__unbounded);
/* Get information about the file NAME in BUF. */ /* Get information about the file NAME in BUF. */
int int
__lxstat (int vers, const char *name, struct stat *buf) __lxstat (int vers, const char *name, struct stat *buf)

View File

@ -32,9 +32,6 @@
#include <xstatconv.h> #include <xstatconv.h>
extern int __syscall_stat (const char *__unbounded,
struct kernel_stat *__unbounded);
/* Get information about the file NAME in BUF. */ /* Get information about the file NAME in BUF. */
int int
__xstat (int vers, const char *name, struct stat *buf) __xstat (int vers, const char *name, struct stat *buf)

View File

@ -19,7 +19,8 @@
#include "kernel-features.h" #include "kernel-features.h"
#ifndef STAT_IS_KERNEL_STAT
extern int __xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf); extern int __xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf);
extern int __xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf); extern int __xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf);
#endif
extern int __xstat32_conv (int vers, struct stat64 *kbuf, struct stat *buf); extern int __xstat32_conv (int vers, struct stat64 *kbuf, struct stat *buf);