]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 27 Apr 2002 20:14:37 +0000 (20:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 27 Apr 2002 20:14:37 +0000 (20:14 +0000)
2002-04-27  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/ia64/fxstat.c: Fix a few issues with the
_internal symbol handling.
* sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise.

ChangeLog
sysdeps/unix/sysv/linux/ia64/fxstat.c
sysdeps/unix/sysv/linux/ia64/lxstat.c

index f1de042ce82bd593807979fc43738accaf499e23..efd5a823b3db0fc613e5679719f8fc15c4e90098 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-27  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/ia64/fxstat.c: Fix a few issues with the
+       _internal symbol handling.
+       * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise.
+
 2002-04-26  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/ia64/fpu/s_finite.S: Define _internal aliases.
index 2783c0f7bfe598cec12e5d9c066b986cd79e2f44..297762e27601922e255f7f3a994f62c5ef2e1096 100644 (file)
 /* Ho hum, since xstat == xstat64 we must get rid of the prototype or gcc
    will complain since they don't strictly match.  */
 #define __fxstat64 __fxstat64_disable
+#define __fxstat64_internal __fxstat64_internal_disable
+/* To avoid the optimizations of using _internal functions define
+   NOT_IN_libc.  */
+#define NOT_IN_libc    1
 
 #include <errno.h>
 #include <stddef.h>
@@ -32,6 +36,7 @@
 extern int __syscall_fstat (int, struct stat *__unbounded);
 
 #undef __fxstat
+#undef __fxstat64_internal
 
 /* Get information about the file FD in BUF.  */
 int
index 449682563d2fa37bd3569600bc7acd3697c5e9c5..19f9af025938ae57d82ce571fac8502993c81582 100644 (file)
 /* Ho hum, since xstat == xstat64 we must get rid of the prototype or gcc
    will complain since they don't strictly match.  */
 #define __lxstat64 __lxstat64_disable
+#define __lxstat64_internal __lxstat64_internal_disable
+/* To avoid the optimizations of using _internal functions define
+   NOT_IN_libc.  */     
+#define NOT_IN_libc    1
 
 #include <errno.h>
 #include <stddef.h>
@@ -30,6 +34,7 @@
 #include <bp-checks.h>
 
 #undef __lxstat
+#undef __lxstat64_internal
 
 extern int __syscall_lstat (const char *__unbounded, struct stat *__unbounded);
 
@@ -43,5 +48,5 @@ __lxstat (int vers, const char *name, struct stat *buf)
 INTDEF(__lxstat)
 weak_alias (__lxstat, _lxstat);
 #undef __lxstat64
-INTDEF(__lxstat64)
 strong_alias (__lxstat, __lxstat64);
+INTDEF(__lxstat64)