~ubuntu-branches/ubuntu/trusty/gcc-4.7/trusty

« back to all changes in this revision

Viewing changes to debian/patches/pr49944.diff

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-04-12 13:17:16 UTC
  • mfrom: (1.2.4) (15.2.15 experimental)
  • Revision ID: package-import@ubuntu.com-20130412131716-u6a490crw325ooyc
Tags: 4.7.3-1ubuntu1
* Merge with Debian; remaining changes:
  - Build from upstream source.
* Revert Linaro changes for this upload:
  - Revert the partial backport Vectorizer Cost Model for ARM.
* Use target specific names for libstdc++ baseline files. LP: #1168267.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
---             Copyright (C) 1995-2005,2008 Free Software Foundation, Inc.  --
26
26
+--          Copyright (C) 1995-2011, Free Software Foundation, Inc.         --
27
27
 --                                                                          --
28
 
 -- GNARL is free software; you can  redistribute it  and/or modify it under --
 
28
 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
29
29
 -- terms of the  GNU General Public License as published  by the Free Soft- --
30
 
@@ -32,7 +32,7 @@
 
30
@@ -30,7 +30,7 @@
31
31
 --                                                                          --
32
32
 ------------------------------------------------------------------------------
33
33
 
36
36
 
37
37
 --  This package encapsulates all direct interfaces to OS services
38
38
 --  that are needed by children of System.
39
 
@@ -200,8 +200,24 @@
 
39
@@ -198,8 +198,24 @@
40
40
    -- Time --
41
41
    ----------
42
42
 
61
61
    function To_Duration (TS : timespec) return Duration;
62
62
    pragma Inline (To_Duration);
63
63
 
64
 
@@ -273,6 +289,10 @@
 
64
@@ -271,6 +287,10 @@
65
65
    type pthread_key_t       is private;
66
66
 
67
67
    PTHREAD_CREATE_DETACHED : constant := 1;
72
72
 
73
73
    -----------
74
74
    -- Stack --
75
 
@@ -296,9 +316,29 @@
 
75
@@ -294,9 +314,29 @@
76
76
    Alternate_Stack_Size : constant := 0;
77
77
    --  No alternate signal stack is used on this platform
78
78
 
103
103
 
104
104
    ---------------------------------------
105
105
    -- Nonstandard Thread Initialization --
106
 
@@ -387,6 +427,36 @@
 
106
@@ -385,6 +425,36 @@
107
107
    -- POSIX.1c  Section 13 --
108
108
    --------------------------
109
109
 
140
140
    type struct_sched_param is record
141
141
       sched_priority : int;  --  scheduling priority
142
142
    end record;
143
 
@@ -398,6 +468,28 @@
 
143
@@ -396,6 +466,28 @@
144
144
       param  : access struct_sched_param) return int;
145
145
    pragma Import (C, pthread_setschedparam, "pthread_setschedparam");
146
146
 
169
169
    function pthread_attr_setschedpolicy
170
170
      (attr   : access pthread_attr_t;
171
171
       policy : int) return int;
172
 
@@ -508,6 +600,9 @@
 
172
@@ -506,6 +598,9 @@
173
173
    end record;
174
174
    pragma Convention (C, timespec);
175
175