[Glibc-bsd-commits] r5833 - trunk/glibc-ports/kfreebsd

aurel32 at alioth.debian.org aurel32 at alioth.debian.org
Thu Nov 19 21:24:04 UTC 2015


Author: aurel32
Date: 2015-11-19 21:24:04 +0000 (Thu, 19 Nov 2015)
New Revision: 5833

Modified:
   trunk/glibc-ports/kfreebsd/posix_fadvise.c
   trunk/glibc-ports/kfreebsd/posix_fallocate.c
Log:
Merge from upstream:

commit a287953a45b0759ce08349a299a458c89b7d8276
Author: Joseph Myers <joseph at codesourcery.com>
Date:   Mon Jan 5 14:37:07 2015 +0000

    Fix wordsize-64 posix_fadvise64, posix_fallocate64 namespace (bug 17777).



Modified: trunk/glibc-ports/kfreebsd/posix_fadvise.c
===================================================================
--- trunk/glibc-ports/kfreebsd/posix_fadvise.c	2015-11-19 21:20:52 UTC (rev 5832)
+++ trunk/glibc-ports/kfreebsd/posix_fadvise.c	2015-11-19 21:24:04 UTC (rev 5833)
@@ -48,4 +48,4 @@
     return rv;
 }
 
-strong_alias (posix_fadvise, posix_fadvise64)
+weak_alias (posix_fadvise, posix_fadvise64)

Modified: trunk/glibc-ports/kfreebsd/posix_fallocate.c
===================================================================
--- trunk/glibc-ports/kfreebsd/posix_fallocate.c	2015-11-19 21:20:52 UTC (rev 5832)
+++ trunk/glibc-ports/kfreebsd/posix_fallocate.c	2015-11-19 21:24:04 UTC (rev 5833)
@@ -77,5 +77,5 @@
 versioned_symbol (libc, __posix_fallocate, posix_fallocate64, GLIBC_2_3_3);
 compat_symbol (libc, __posix_fallocate64_l32, posix_fallocate64, GLIBC_2_2);
 #else
-strong_alias (__posix_fallocate, posix_fallocate64)
+weak_alias (__posix_fallocate, posix_fallocate64)
 #endif




More information about the Glibc-bsd-commits mailing list