This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc 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]

Community source repository for glibc add-on ports branch, master, updated. glibc-2.10.1-35-gb055d3f


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Community source repository for glibc add-on ports".

The branch, master has been updated
       via  b055d3f1f7e2d2ab315ef018390534b1a013cf31 (commit)
      from  b2b2415fe0ec0ea0db880c5b5e9f3fb768f4197e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=b055d3f1f7e2d2ab315ef018390534b1a013cf31

commit b055d3f1f7e2d2ab315ef018390534b1a013cf31
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Nov 6 23:44:33 2009 +0000

    Fix ARM fallocate for -D_FILE_OFFSET_BITS=64.
    
    	* sysdeps/unix/sysv/linux/arm/bits/fcntl.h (fallocate): Fix types
    	of last two arguments when -D_FILE_OFFSET_BITS=64.

diff --git a/ChangeLog.arm b/ChangeLog.arm
index d784564..58bfada 100644
--- a/ChangeLog.arm
+++ b/ChangeLog.arm
@@ -1,3 +1,8 @@
+2009-11-06  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/unix/sysv/linux/arm/bits/fcntl.h (fallocate): Fix types
+	of last two arguments when -D_FILE_OFFSET_BITS=64.
+
 2009-11-04  Philip Blundell  <philb@gnu.org>
 
 	* sysdeps/unix/sysv/linux/arm/clone.S: Support V4T interworking.
diff --git a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h
index e5e70aa..6388904 100644
--- a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h
@@ -259,8 +259,8 @@ extern ssize_t tee (int __fdin, int __fdout, size_t __len,
 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
 # else
 #  ifdef __REDIRECT
-extern int __REDIRECT (fallocate, (int __fd, int __mode, __off_t __offset,
-				   __off_t __len),
+extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset,
+				   __off64_t __len),
 		       fallocate64);
 #  else
 #   define fallocate fallocate64

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog.arm                            |    5 +++++
 sysdeps/unix/sysv/linux/arm/bits/fcntl.h |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


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