~ubuntu-branches/ubuntu/intrepid/glibc/intrepid

« back to all changes in this revision

Viewing changes to debian/patches/mips/cvs-mipsn32.diff

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-05-09 14:22:01 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080509142201-zucrstm1abrl9d4v
Tags: 2.8~20080505-0ubuntu1
* New upstream version, built from a prerelease tarball.
  - Remove patches applied upstream: amd64/cvs-vdso_clock_gettime.diff,
    hppa/cvs-atomic.diff, hppa/hppalll.diff, sparc/submitted-v9v2.diff,
    all/cvs-gai_conf.diff, any/cvs-epoll_h.diff, any/cvs-ether_line.diff,
    any/cvs-ethertype.diff, any/cvs-fchmodat.diff, any/cvs-gcc-4.3.diff,
    any/cvs-iconv-iso2022jp-loop-bug.diff, any/cvs-rfc3484.diff,
    any/cvs-sched_h.diff, any/cvs-strtod.diff, any/cvs-tzfile.diff,
    any/cvs-vfscanf.diff, any/cvs-wchar_h.diff,
    any/cvs-sunrpc_rpc_thread.diff, any/cvs-strerror_r.diff,
    any/cvs-short-for-fnstsw.diff, any/local-strfry.diff,
    any/submitted-ieee754_h.diff, any/submitted-link-local_resolver.diff.
  - Update patches: i386/submitted-i686-timing.diff.
* debian/*.symbols*:
  - Add new symbols.
  - Remove GLIBC_PRIVATE symbols not found anymore in 2.8:
    _dl_tls_get_addr_soft@GLIBC_PRIVATE, __nss_services_lookup@GLIBC_PRIVATE.
* debhelper.in/libc.install: Relax file location for snapshot builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
2008-04-02  Aurelien Jarno  <aurelien@aurel32.net>
 
2
 
 
3
        * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list: Add 
 
4
        truncate and ftruncate systems calls.
 
5
        * sysdeps/unix/sysv/linux/mips/mips64/n32/ftruncate64.c: Make an
 
6
        empty file.
 
7
        * sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c: Ditto.
 
8
 
 
9
Index: ports/sysdeps/unix/sysv/linux/mips/mips64/n32/ftruncate64.c
 
10
===================================================================
 
11
RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/ftruncate64.c,v
 
12
retrieving revision 1.1
 
13
diff -u -d -p -r1.1 ftruncate64.c
 
14
--- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/ftruncate64.c 5 Apr 2003 19:57:35 -0000       1.1
 
15
+++ ports/sysdeps/unix/sysv/linux/mips/mips64/n32/ftruncate64.c 2 Apr 2008 08:54:11 -0000
 
16
@@ -1,28 +1 @@
 
17
-/* Copyright (C) 2003 Free Software Foundation, Inc.
 
18
-   This file is part of the GNU C Library.
 
19
-
 
20
-   The GNU C Library is free software; you can redistribute it and/or
 
21
-   modify it under the terms of the GNU Lesser General Public
 
22
-   License as published by the Free Software Foundation; either
 
23
-   version 2.1 of the License, or (at your option) any later version.
 
24
-
 
25
-   The GNU C Library is distributed in the hope that it will be useful,
 
26
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
27
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
28
-   Lesser General Public License for more details.
 
29
-
 
30
-   You should have received a copy of the GNU Lesser General Public
 
31
-   License along with the GNU C Library; if not, write to the Free
 
32
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
33
-   02111-1307 USA.  */
 
34
-
 
35
-#include <sys/types.h>
 
36
-
 
37
-#include <sysdep.h>
 
38
-
 
39
-extern int ftruncate (int fd, off64_t length);
 
40
-
 
41
-int __ftruncate64 (int fd, off64_t length) {
 
42
-  return ftruncate (fd, length);
 
43
-}
 
44
-weak_alias (__ftruncate64, ftruncate64)
 
45
+/* Empty.  */
 
46
Index: ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list
 
47
===================================================================
 
48
RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list,v
 
49
retrieving revision 1.1
 
50
diff -u -d -p -r1.1 syscalls.list
 
51
--- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list 23 May 2007 17:26:13 -0000      1.1
 
52
+++ ports/sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list 2 Apr 2008 08:54:11 -0000
 
53
@@ -3,3 +3,5 @@
 
54
 readahead      -       readahead       i:iii   __readahead     readahead
 
55
 sync_file_range        -       sync_file_range i:iiii  sync_file_range
 
56
 posix_fadvise  -       fadvise64       i:iiii  posix_fadvise
 
57
+ftruncate      -       ftruncate       i:ii    __ftruncate     ftruncate ftruncate64 __ftruncate64
 
58
+truncate       -       truncate        i:si    truncate        truncate64
 
59
Index: ports/sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c
 
60
===================================================================
 
61
RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c,v
 
62
retrieving revision 1.1
 
63
diff -u -d -p -r1.1 truncate64.c
 
64
--- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c  5 Apr 2003 19:57:35 -0000       1.1
 
65
+++ ports/sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c  2 Apr 2008 08:54:11 -0000
 
66
@@ -1,30 +1 @@
 
67
-/* Copyright (C) 2003 Free Software Foundation, Inc.
 
68
-   This file is part of the GNU C Library.
 
69
-
 
70
-   The GNU C Library is free software; you can redistribute it and/or
 
71
-   modify it under the terms of the GNU Lesser General Public
 
72
-   License as published by the Free Software Foundation; either
 
73
-   version 2.1 of the License, or (at your option) any later version.
 
74
-
 
75
-   The GNU C Library is distributed in the hope that it will be useful,
 
76
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
77
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
78
-   Lesser General Public License for more details.
 
79
-
 
80
-   You should have received a copy of the GNU Lesser General Public
 
81
-   License along with the GNU C Library; if not, write to the Free
 
82
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
83
-   02111-1307 USA.  */
 
84
-
 
85
-#include <sys/types.h>
 
86
-
 
87
-#include <sysdep.h>
 
88
-#include <bp-checks.h>
 
89
-
 
90
-extern int truncate (const char *__unbounded path, int dummy,
 
91
-                    off64_t length);
 
92
-
 
93
-int truncate64 (const char *__unbounded path, int dummy,
 
94
-               off64_t length) {
 
95
-  return truncate (path, dummy, length);
 
96
-}
 
97
+/* Empty.  */