comparison gcc/ada/libgnat/s-parame__rtems.adb @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
4 -- -- 4 -- --
5 -- S Y S T E M . P A R A M E T E R S -- 5 -- S Y S T E M . P A R A M E T E R S --
6 -- -- 6 -- --
7 -- B o d y -- 7 -- B o d y --
8 -- -- 8 -- --
9 -- Copyright (C) 1997-2017, Free Software Foundation, Inc. -- 9 -- Copyright (C) 1997-2018, Free Software Foundation, Inc. --
10 -- -- 10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under -- 11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- -- 12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- -- 13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- 14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
54 else 54 else
55 return Size; 55 return Size;
56 end if; 56 end if;
57 end Adjust_Storage_Size; 57 end Adjust_Storage_Size;
58 58
59 ----------------------------
60 -- Default_Sec_Stack_Size --
61 ----------------------------
62
63 function Default_Sec_Stack_Size return Size_Type is
64 Default_SS_Size : Integer;
65 pragma Import (C, Default_SS_Size,
66 "__gnat_default_ss_size");
67 begin
68 return Size_Type (Default_SS_Size);
69 end Default_Sec_Stack_Size;
70
71 ------------------------ 59 ------------------------
72 -- Default_Stack_Size -- 60 -- Default_Stack_Size --
73 ------------------------ 61 ------------------------
74 62
75 function Default_Stack_Size return Size_Type is 63 function Default_Stack_Size return Size_Type is