aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/s-linux.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2011-09-06 11:15:15 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2011-09-06 11:15:15 +0200
commit77aa62e72fd8a3e2d7aeed044554e4f9d53c6ba4 (patch)
tree2324b2ae83960239267906442bbd67e1705da8fa /gcc/ada/s-linux.ads
parent886b5a18d51ec949a7d22cabd3017e0bd795779d (diff)
downloadgcc-77aa62e72fd8a3e2d7aeed044554e4f9d53c6ba4.zip
gcc-77aa62e72fd8a3e2d7aeed044554e4f9d53c6ba4.tar.gz
gcc-77aa62e72fd8a3e2d7aeed044554e4f9d53c6ba4.tar.bz2
[multiple changes]
2011-09-06 Vincent Celier <celier@adacore.com> * projects.texi: Add menus and @node lines. 2011-09-06 Ed Schonberg <schonberg@adacore.com> * exp_ch6.adb (Expand_Inlined_Call): Handle properly the case where the return type is an unconstrained array and the context is an assignment. Optimize the case when the target of the assignment is a selected component. 2011-09-06 Arnaud Charlet <charlet@adacore.com> * s-solita.adb: Update comments. 2011-09-06 Pascal Obry <obry@adacore.com> * s-linux.ads, s-linux-alpha.ads, s-linux-hppa.ads, s-linux-mipsel.ads, s-linux-sparc.ads: Remove hard coded and now wrong definitions. * s-oscons-tmplt.c: Add support for generating pthread related types size on GNU/Linux as done for Darwin. * s-osinte-linux.ads: Use s-oscons to define the pthread types. From-SVN: r178573
Diffstat (limited to 'gcc/ada/s-linux.ads')
-rw-r--r--gcc/ada/s-linux.ads17
1 files changed, 1 insertions, 16 deletions
diff --git a/gcc/ada/s-linux.ads b/gcc/ada/s-linux.ads
index 29918d7..c8a7ad1 100644
--- a/gcc/ada/s-linux.ads
+++ b/gcc/ada/s-linux.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 2008-2009, Free Software Foundation, Inc. --
+-- Copyright (C) 2008-2011, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -101,19 +101,4 @@ package System.Linux is
SA_SIGINFO : constant := 16#04#;
SA_ONSTACK : constant := 16#08000000#;
- type struct_pthread_fast_lock is record
- status : Long_Integer;
- spinlock : Integer;
- end record;
- pragma Convention (C, struct_pthread_fast_lock);
-
- type pthread_mutex_t is record
- m_reserved : Integer;
- m_count : Integer;
- m_owner : System.Address;
- m_kind : Integer;
- m_lock : struct_pthread_fast_lock;
- end record;
- pragma Convention (C, pthread_mutex_t);
-
end System.Linux;