]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ada: Tune layout after switching to Ada 2022 aggregate syntax
authorPiotr Trojanek <trojanek@adacore.com>
Fri, 9 Sep 2022 15:48:45 +0000 (17:48 +0200)
committerMarc Poulhiès <poulhies@adacore.com>
Mon, 7 Nov 2022 08:36:30 +0000 (09:36 +0100)
Whitespace cleanup only.

gcc/ada/

* libgnarl/s-interr.adb: Tune whitespace.

gcc/ada/libgnarl/s-interr.adb

index 94e572d482b4e7f7006835b6824693a9c9a52c27..2fbb1406936751e2d5882209d31c33cf61487c0e 100644 (file)
@@ -109,8 +109,8 @@ package body System.Interrupts is
          Static      : Boolean);
 
       entry Detach_Handler
-        (Interrupt   : Interrupt_ID;
-         Static      : Boolean);
+        (Interrupt : Interrupt_ID;
+         Static    : Boolean);
 
       entry Bind_Interrupt_To_Entry
         (T         : Task_Id;
@@ -174,15 +174,14 @@ package body System.Interrupts is
    pragma Atomic_Components (Ignored);
    --  True iff the corresponding interrupt is blocked in the process level
 
-   Last_Unblocker :
-     array (Interrupt_ID'Range) of Task_Id := [others => Null_Task];
+   Last_Unblocker : array (Interrupt_ID'Range) of Task_Id :=
+                      [others => Null_Task];
    pragma Atomic_Components (Last_Unblocker);
    --  Holds the ID of the last Task which Unblocked this Interrupt. It
    --  contains Null_Task if no tasks have ever requested the Unblocking
    --  operation or the Interrupt is currently Blocked.
 
-   Server_ID : array (Interrupt_ID'Range) of Task_Id :=
-                 [others => Null_Task];
+   Server_ID : array (Interrupt_ID'Range) of Task_Id := [others => Null_Task];
    pragma Atomic_Components (Server_ID);
    --  Holds the Task_Id of the Server_Task for each interrupt. Task_Id is
    --  needed to accomplish locking per Interrupt base. Also is needed to