aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2024-12-22 01:13:04 +0100
committerEric Botcazou <ebotcazou@adacore.com>2024-12-22 12:30:17 +0100
commitd9d92b1c1b418dc5f8298cd75f8bdd5b0bfa9837 (patch)
treeed6ae75b9a70bc0284b377bd695b672eea3953b0
parente7e653d3836909182ee0cf46bc2fcc04f3c055f8 (diff)
downloadgcc-d9d92b1c1b418dc5f8298cd75f8bdd5b0bfa9837.zip
gcc-d9d92b1c1b418dc5f8298cd75f8bdd5b0bfa9837.tar.gz
gcc-d9d92b1c1b418dc5f8298cd75f8bdd5b0bfa9837.tar.bz2
Ada: Fix GNU/Hurd maximum priority
gcc/ada/ChangeLog: * libgnat/system-gnu.ads: Set Max_Priority to 60. Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
-rw-r--r--gcc/ada/libgnat/system-gnu.ads2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/libgnat/system-gnu.ads b/gcc/ada/libgnat/system-gnu.ads
index f46b323..5049ab8 100644
--- a/gcc/ada/libgnat/system-gnu.ads
+++ b/gcc/ada/libgnat/system-gnu.ads
@@ -95,7 +95,7 @@ package System is
-- Priority-related Declarations (RM D.1)
- Max_Priority : constant Positive := 0;
+ Max_Priority : constant Positive := 60;
Max_Interrupt_Priority : constant Positive := 63;
subtype Any_Priority is Integer range 0 .. 63;