This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

fxstatat fix for ARM and MIPS


Hi

When compiling latest glibc with --enable-kernel=2.6.17 the *at syscalls are assumed and __atfct_seterrno is not defined which is used in the
common fxstatat.c. The i386 one has the fix. So using these files for ARM and MIPS fixes the error.


OK?

--
Khem Raj <kraj@mvista.com>
MontaVista Software Inc.

2006-08-25  Khem Raj  <kraj@mvista.com>

	* sysdeps/unix/sysv/linux/arm/fxstatat.c,
	sysdeps/unix/sysv/linux/mips/fxstatat.c: New files.


Index: sysdeps/unix/sysv/linux/arm/fxstatat.c
===================================================================
--- /dev/null
+++ sysdeps/unix/sysv/linux/arm/fxstatat.c
@@ -0,0 +1 @@
+#include <sysdeps/unix/sysv/linux/i386/fxstatat.c>
Index: sysdeps/unix/sysv/linux/mips/fxstatat.c
===================================================================
--- /dev/null
+++ sysdeps/unix/sysv/linux/mips/fxstatat.c
@@ -0,0 +1 @@
+#include <sysdeps/unix/sysv/linux/i386/fxstatat.c>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]