@@ -1,3 +1,14 @@
+2024-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
+
+ * libgnarl/a-intnam__freebsd.ads: Rename to...
+ * libgnarl/a-intnam__bsd.ads: ... new file.
+ * libgnarl/a-intnam__dragonfly.ads: Remove file.
+ * Makefile.rtl (x86-kfreebsd, x86-gnuhurd, x86_64-kfreebsd,
+ aarch64-freebsd, x86-freebsd, x86_64-freebsd): Use
+ libgnarl/a-intnam__bsd.ads instead of libgnarl/a-intnam__freebsd.ads.
+ * ada/Makefile.rtl (x86_64-dragonfly): Use libgnarl/a-intnam__bsd.ads
+ instead of libgnarl/a-intnam__dragonfly.ads.
+
2024-10-29 David Malcolm <dmalcolm@redhat.com>
PR other/116613
@@ -1684,7 +1684,7 @@ ifeq ($(strip $(filter-out %86 kfreebsd%,$(target_cpu) $(target_os))),)
SELECTED_PAIRS=x86-kfreebsd
LIBGNAT_TARGET_PAIRS = \
- a-intnam.ads<libgnarl/a-intnam__freebsd.ads \
+ a-intnam.ads<libgnarl/a-intnam__bsd.ads \
s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
s-intman.adb<libgnarl/s-intman__posix.adb \
s-osinte.adb<libgnarl/s-osinte__posix.adb \
@@ -1720,7 +1720,7 @@ ifeq ($(strip $(filter-out %86 pc gnu,$(target_cpu) $(target_vendor) $(target_os
SELECTED_PAIRS=x86-gnuhurd
LIBGNAT_TARGET_PAIRS = \
- a-intnam.ads<libgnarl/a-intnam__freebsd.ads \
+ a-intnam.ads<libgnarl/a-intnam__bsd.ads \
s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
s-intman.adb<libgnarl/s-intman__posix.adb \
s-osinte.adb<libgnarl/s-osinte__gnu.adb \
@@ -1753,7 +1753,7 @@ ifeq ($(strip $(filter-out x86_64 kfreebsd%,$(target_cpu) $(target_os))),)
SELECTED_PAIRS=x86_64-kfreebsd
LIBGNAT_TARGET_PAIRS = \
- a-intnam.ads<libgnarl/a-intnam__freebsd.ads \
+ a-intnam.ads<libgnarl/a-intnam__bsd.ads \
s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
s-intman.adb<libgnarl/s-intman__posix.adb \
s-osinte.adb<libgnarl/s-osinte__posix.adb \
@@ -1787,7 +1787,7 @@ ifeq ($(strip $(filter-out %aarch64 freebsd%,$(target_cpu) $(target_os))),)
SELECTED_PAIRS=aarch64-freebsd
LIBGNAT_TARGET_PAIRS = \
- a-intnam.ads<libgnarl/a-intnam__freebsd.ads \
+ a-intnam.ads<libgnarl/a-intnam__bsd.ads \
a-nallfl.ads<libgnat/a-nallfl__wraplf.ads \
s-dorepr.adb<libgnat/s-dorepr__fma.adb \
s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
@@ -1824,7 +1824,7 @@ ifeq ($(strip $(filter-out %86 freebsd%,$(target_cpu) $(target_os))),)
SELECTED_PAIRS=x86-freebsd
LIBGNAT_TARGET_PAIRS = \
- a-intnam.ads<libgnarl/a-intnam__freebsd.ads \
+ a-intnam.ads<libgnarl/a-intnam__bsd.ads \
s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
s-intman.adb<libgnarl/s-intman__posix.adb \
s-mudido.adb<libgnarl/s-mudido__affinity.adb \
@@ -1860,7 +1860,7 @@ ifeq ($(strip $(filter-out %86_64 freebsd%,$(target_cpu) $(target_os))),)
SELECTED_PAIRS=x86_64-freebsd
LIBGNAT_TARGET_PAIRS = \
- a-intnam.ads<libgnarl/a-intnam__freebsd.ads \
+ a-intnam.ads<libgnarl/a-intnam__bsd.ads \
s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
s-intman.adb<libgnarl/s-intman__posix.adb \
s-mudido.adb<libgnarl/s-mudido__affinity.adb \
@@ -1898,7 +1898,7 @@ ifeq ($(strip $(filter-out %86_64 dragonfly%,$(target_cpu) $(target_os))),)
SELECTED_PAIRS=x86_64-dragonfly
LIBGNAT_TARGET_PAIRS = \
- a-intnam.ads<libgnarl/a-intnam__dragonfly.ads \
+ a-intnam.ads<libgnarl/a-intnam__bsd.ads \
s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
s-intman.adb<libgnarl/s-intman__posix.adb \
s-mudido.adb<libgnarl/s-mudido__affinity.adb \
similarity index 99%
rename from gcc/ada/libgnarl/a-intnam__freebsd.ads
rename to gcc/ada/libgnarl/a-intnam__bsd.ads
@@ -29,7 +29,7 @@
-- --
------------------------------------------------------------------------------
+-- This is the BSD THREADS version of this package
with System.OS_Interface;
deleted file mode 100644
@@ -1,136 +0,0 @@
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-
-
-with System.OS_Interface;
-
-package Ada.Interrupts.Names is
-
- -- All identifiers in this unit are implementation defined
-
- pragma Implementation_Defined;
-
- -- Beware that the mapping of names to signals may be many-to-one. There
- -- may be aliases. Also, for all signal names that are not supported on
- -- the current system the value of the corresponding constant will be zero.
-
- SIGHUP : constant Interrupt_ID :=
- System.OS_Interface.SIGHUP; -- hangup
-
- SIGINT : constant Interrupt_ID :=
- System.OS_Interface.SIGINT; -- interrupt (rubout)
-
- SIGQUIT : constant Interrupt_ID :=
- System.OS_Interface.SIGQUIT; -- quit (ASCD FS)
-
- SIGILL : constant Interrupt_ID :=
- System.OS_Interface.SIGILL; -- illegal instruction (not reset)
-
- SIGTRAP : constant Interrupt_ID :=
- System.OS_Interface.SIGTRAP; -- trace trap (not reset)
-
- SIGIOT : constant Interrupt_ID :=
- System.OS_Interface.SIGIOT; -- IOT instruction
-
- SIGABRT : constant Interrupt_ID := -- used by abort,
- System.OS_Interface.SIGABRT; -- replace SIGIOT in the future
-
- SIGFPE : constant Interrupt_ID :=
- System.OS_Interface.SIGFPE; -- floating point exception
-
- SIGKILL : constant Interrupt_ID :=
- System.OS_Interface.SIGKILL; -- kill (cannot be caught or ignored)
-
- SIGBUS : constant Interrupt_ID :=
- System.OS_Interface.SIGBUS; -- bus error
-
- SIGSEGV : constant Interrupt_ID :=
- System.OS_Interface.SIGSEGV; -- segmentation violation
-
- SIGPIPE : constant Interrupt_ID := -- write on a pipe with
- System.OS_Interface.SIGPIPE; -- no one to read it
-
- SIGALRM : constant Interrupt_ID :=
- System.OS_Interface.SIGALRM; -- alarm clock
-
- SIGTERM : constant Interrupt_ID :=
- System.OS_Interface.SIGTERM; -- software termination signal from kill
-
- SIGURG : constant Interrupt_ID :=
- System.OS_Interface.SIGURG; -- urgent condition on IO channel
-
- SIGSTOP : constant Interrupt_ID :=
- System.OS_Interface.SIGSTOP; -- stop (cannot be caught or ignored)
-
- SIGTSTP : constant Interrupt_ID :=
- System.OS_Interface.SIGTSTP; -- user stop requested from tty
-
- SIGCONT : constant Interrupt_ID :=
- System.OS_Interface.SIGCONT; -- stopped process has been continued
-
- SIGCHLD : constant Interrupt_ID :=
- System.OS_Interface.SIGCHLD; -- 4.3BSD's/POSIX name for SIGCLD
-
- SIGCLD : constant Interrupt_ID :=
- System.OS_Interface.SIGCLD; -- child status change
-
- SIGTTIN : constant Interrupt_ID :=
- System.OS_Interface.SIGTTIN; -- background tty read attempted
-
- SIGTTOU : constant Interrupt_ID :=
- System.OS_Interface.SIGTTOU; -- background tty write attempted
-
- SIGIO : constant Interrupt_ID := -- input/output possible,
- System.OS_Interface.SIGIO; -- SIGPOLL alias (Solaris)
-
- SIGXCPU : constant Interrupt_ID :=
- System.OS_Interface.SIGXCPU; -- CPU time limit exceeded
-
- SIGXFSZ : constant Interrupt_ID :=
- System.OS_Interface.SIGXFSZ; -- filesize limit exceeded
-
- SIGVTALRM : constant Interrupt_ID :=
- System.OS_Interface.SIGVTALRM; -- virtual timer expired
-
- SIGPROF : constant Interrupt_ID :=
- System.OS_Interface.SIGPROF; -- profiling timer expired
-
- SIGWINCH : constant Interrupt_ID :=
- System.OS_Interface.SIGWINCH; -- window size change
-
- SIGUSR1 : constant Interrupt_ID :=
- System.OS_Interface.SIGUSR1; -- user defined signal 1
-
- SIGUSR2 : constant Interrupt_ID :=
- System.OS_Interface.SIGUSR2; -- user defined signal 2
-
-end Ada.Interrupts.Names;
They are all the same on all BSD-like systems (including GNU/Hurd). gcc/ada/ChangeLog: * libgnarl/a-intnam__freebsd.ads: Rename to... * libgnarl/a-intnam__bsd.ads: ... new file. * libgnarl/a-intnam__dragonfly.ads: Remove file. * Makefile.rtl (x86-kfreebsd, x86-gnuhurd, x86_64-kfreebsd, aarch64-freebsd, x86-freebsd, x86_64-freebsd): Use libgnarl/a-intnam__bsd.ads instead of libgnarl/a-intnam__freebsd.ads. * ada/Makefile.rtl (x86_64-dragonfly): Use libgnarl/a-intnam__bsd.ads instead of libgnarl/a-intnam__dragonfly.ads. Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> --- gcc/ada/ChangeLog | 11 ++ gcc/ada/Makefile.rtl | 14 +- ...-intnam__freebsd.ads => a-intnam__bsd.ads} | 2 +- gcc/ada/libgnarl/a-intnam__dragonfly.ads | 136 ------------------ 4 files changed, 19 insertions(+), 144 deletions(-) rename gcc/ada/libgnarl/{a-intnam__freebsd.ads => a-intnam__bsd.ads} (99%) delete mode 100644 gcc/ada/libgnarl/a-intnam__dragonfly.ads