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

[commits] r8756 - in /fsf/glibc-2_10-branch/ports: ./ sysdeps/unix/sysv/linux/mips/mips32/



Author: eglibc
Date: Mon Aug  3 09:57:23 2009
New Revision: 8756

Log:
Import glibc-ports-2.10 for 2009-08-03

Added:
    fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c
    fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/internal_accept4.S
Modified:
    fsf/glibc-2_10-branch/ports/ChangeLog.mips

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 Aug  3 09:57:23 2009
@@ -1,3 +1,8 @@
+2009-08-03  Joseph Myers  <joseph@xxxxxxxxxxxxxxxx>
+
+	* sysdeps/unix/sysv/linux/mips/mips32/accept4.c,
+	sysdeps/unix/sysv/linux/mips/mips32/internal_accept4.S: New.
+
 2009-07-20  Aurelien Jarno  <aurelien@xxxxxxxxxxx>
 
 	* sysdeps/unix/sysv/linux/mips/kernel-features.h: Define

Added: fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c
==============================================================================
--- fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c (added)
+++ fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c Mon Aug  3 09:57:23 2009
@@ -1,0 +1,32 @@
+/* Copyright (C) 2008, 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.  */
+
+/* Avoid accept4.c trying to use a definition based on the socketcall
+   syscall and internal_accept4.S.  */
+
+#include <errno.h>
+#include <signal.h>
+#include <sys/socket.h>
+
+#include <sysdep-cancel.h>
+#include <sys/syscall.h>
+#include <kernel-features.h>
+
+#undef __NR_socketcall
+
+#include <sysdeps/unix/sysv/linux/accept4.c>

Added: fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/internal_accept4.S
==============================================================================
--- fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/internal_accept4.S (added)
+++ fsf/glibc-2_10-branch/ports/sysdeps/unix/sysv/linux/mips/mips32/internal_accept4.S Mon Aug  3 09:57:23 2009
@@ -1,0 +1,2 @@
+/* MIPS does not have socket.S and the socketcall syscall should
+   generally be avoided, though it exists.  */