diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2024-10-09 21:21:36 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@adacore.com> | 2024-10-09 23:44:22 +0200 |
commit | 820cd5266e714750888dd2cdf4793cde8741c1db (patch) | |
tree | 6714762d3898efa66051812f7cb4e5fa899578ac /gcc/ada/libgnat | |
parent | dcee0b6547211a428b75adb03a461285fed0f20d (diff) | |
download | gcc-820cd5266e714750888dd2cdf4793cde8741c1db.zip gcc-820cd5266e714750888dd2cdf4793cde8741c1db.tar.gz gcc-820cd5266e714750888dd2cdf4793cde8741c1db.tar.bz2 |
Remove support for HP-UX 10
gcc/ada
* Makefile.rtl: Remove HP-UX 10 section.
* libgnarl/s-osinte__hpux-dce.ads: Delete.
* libgnarl/s-osinte__hpux-dce.adb: Likewise.
* libgnarl/s-taprop__hpux-dce.adb: Likewise.
* libgnarl/s-taspri__hpux-dce.ads: Likewise.
* libgnat/s-oslock__hpux-dce.ads: Likewise.
Diffstat (limited to 'gcc/ada/libgnat')
-rw-r--r-- | gcc/ada/libgnat/s-oslock__hpux-dce.ads | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/gcc/ada/libgnat/s-oslock__hpux-dce.ads b/gcc/ada/libgnat/s-oslock__hpux-dce.ads deleted file mode 100644 index 824c395..0000000 --- a/gcc/ada/libgnat/s-oslock__hpux-dce.ads +++ /dev/null @@ -1,61 +0,0 @@ ------------------------------------------------------------------------------- --- -- --- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- --- -- --- S Y S T E M . O S _ L O C K S -- --- -- --- S p e c -- --- -- --- Copyright (C) 2024, Free Software Foundation, Inc. -- --- -- --- GNAT 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- -- --- ware Foundation; either version 3, or (at your option) any later ver- -- --- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- --- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- --- or FITNESS FOR A PARTICULAR PURPOSE. -- --- -- --- As a special exception under Section 7 of GPL version 3, you are granted -- --- additional permissions described in the GCC Runtime Library Exception, -- --- version 3.1, as published by the Free Software Foundation. -- --- -- --- You should have received a copy of the GNU General Public License and -- --- a copy of the GCC Runtime Library Exception along with this program; -- --- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- --- <http://www.gnu.org/licenses/>. -- --- -- --- GNARL was developed by the GNARL team at Florida State University. -- --- Extensive contributions were provided by Ada Core Technologies, Inc. -- --- -- ------------------------------------------------------------------------------- - --- This is the HP-UX version of this package - -with Interfaces.C; -with System.OS_Constants; - -package System.OS_Locks is - pragma Preelaborate; - - type pthread_mutex_t is limited private; - - subtype RTS_Lock is pthread_mutex_t; - -- Should be used inside the runtime system. The difference between Lock - -- and the RTS_Lock is that the latter serves only as a semaphore so that - -- we do not check for ceiling violations. - -private - - type cma_t_address is new System.Address; - - type cma_t_handle is record - field1 : cma_t_address; - field2 : Short_Integer; - field3 : Short_Integer; - end record; - for cma_t_handle'Size use 64; - - type pthread_mutex_t is new cma_t_handle; - pragma Convention (C_Pass_By_Copy, pthread_mutex_t); - -end System.OS_Locks; |