Skip to content

Commit

Permalink
2003-06-17 Guido Guenther <agx@sigxcpu.org>
Browse files Browse the repository at this point in the history
	* sysdeps/unix/sysv/linux/mips/xstatconv.c: Handle STAT_IS_KERNEL_STAT
	case.
	(xstat_conv): Rename to __xstat_conv and remove static inline.
	(xstat64_conv): Likewise.
  • Loading branch information
Andreas Jaeger committed Jun 30, 2003
1 parent e479cc8 commit 7efbf47
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions sysdeps/unix/sysv/linux/mips/xstatconv.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Convert between the kernel's `struct stat' format, and libc's.
Copyright (C) 1991,1995,1996,1997,1998,2000 Free Software Foundation, Inc.
Copyright (C) 1991,1995,1996,1997,1998,2000,2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand All @@ -17,11 +17,22 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */

#include <errno.h>
#include <sys/stat.h>
#include <kernel_stat.h>

#ifdef STAT_IS_KERNEL_STAT

/* Dummy. */
struct kernel_stat;

#else

#include <string.h>


static inline int
xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf)
int
__xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf)
{
switch (vers)
{
Expand Down Expand Up @@ -70,8 +81,8 @@ xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf)
return 0;
}

static inline int
xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf)
int
__xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf)
{
#ifdef XSTAT_IS_XSTAT64
return xstat_conv (vers, kbuf, ubuf);
Expand Down Expand Up @@ -118,3 +129,5 @@ xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf)
return 0;
#endif
}

#endif /* ! STAT_IS_KERNEL_STAT */

0 comments on commit 7efbf47

Please sign in to comment.