[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r9378 - in /fsf/glibc-2_10-branch/ports: ./ sysdeps/unix/sysv/linux/mips/mips64/n32/ sysdeps/unix/sysv/linux/mips/mips64/n64/



Author: eglibc
Date: Mon Nov 30 17:35:27 2009
New Revision: 9378

Log:
Import glibc-ports-2.10 for 2009-11-30

Added:
    fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c
    fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c
    fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise64.c
Modified:
    fsf/glibc-2_10-branch/ports/ChangeLog.mips
    fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list

Modified: fsf/glibc-2_10-branch/ports/ChangeLog.mips
==============================================================================
--- fsf/glibc-2_10-branch/ports/ChangeLog.mips (original)
+++ fsf/glibc-2_10-branch/ports/ChangeLog.mips Mon Nov 30 17:35:27 2009
@@ -1,3 +1,11 @@
+2009-12-01  Joseph Myers  <joseph@xxxxxxxxxxxxxxxx>
+
+	* sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list
+	(posix_fadvise): Remove.
+	* sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c,
+	sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c,
+	sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise64.c: New.
+
 2009-11-06  Joseph Myers  <joseph@xxxxxxxxxxxxxxxx>
 
 	* sysdeps/unix/sysv/linux/mips/bits/fcntl.h (fallocate): Fix types

Added: fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c
==============================================================================
--- fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c (added)
+++ fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c Mon Nov 30 17:35:27 2009
@@ -1,0 +1,38 @@
+/* Copyright (C) 2003, 2004, 2009 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
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <sysdep.h>
+
+/* Advice the system about the expected behaviour of the application with
+   respect to the file associated with FD.  */
+
+int
+posix_fadvise (int fd, off_t offset, off_t len, int advise)
+{
+#ifdef __NR_fadvise64
+  INTERNAL_SYSCALL_DECL (err);
+  int ret = INTERNAL_SYSCALL (fadvise64, err, 4, fd, offset, len, advise);
+  if (INTERNAL_SYSCALL_ERROR_P (ret, err))
+    return INTERNAL_SYSCALL_ERRNO (ret, err);
+  return 0;
+#else
+  return ENOSYS;
+#endif
+}

Modified: fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list
==============================================================================
--- fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (original)
+++ fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list Mon Nov 30 17:35:27 2009
@@ -2,6 +2,5 @@
 
 readahead	-	readahead	i:iii	__readahead	readahead
 sync_file_range	-	sync_file_range	i:iiii	sync_file_range
-posix_fadvise	-	fadvise64	i:iiii	posix_fadvise
 ftruncate	-	ftruncate	i:ii	__ftruncate	ftruncate ftruncate64 __ftruncate64
 truncate	-	truncate	i:si	truncate	truncate64

Added: fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c
==============================================================================
--- fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c (added)
+++ fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c Mon Nov 30 17:35:27 2009
@@ -1,0 +1,1 @@
+#include <sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c>

Added: fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise64.c
==============================================================================
--- fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise64.c (added)
+++ fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise64.c Mon Nov 30 17:35:27 2009
@@ -1,0 +1,1 @@
+/* posix_fadvise64 is in posix_fadvise.c */