summaryrefslogtreecommitdiff
path: root/gcc/ada/g-signal.ads
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/g-signal.ads')
-rw-r--r--gcc/ada/g-signal.ads11
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/ada/g-signal.ads b/gcc/ada/g-signal.ads
index 6939fe27386..ed79c9ca0dc 100644
--- a/gcc/ada/g-signal.ads
+++ b/gcc/ada/g-signal.ads
@@ -1,12 +1,12 @@
------------------------------------------------------------------------------
-- --
--- GNAT RUNTIME COMPONENTS --
+-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . S I G N A L S --
-- --
-- S p e c --
-- --
--- Copyright (C) 2003 Free Software Foundation, Inc. --
+-- Copyright (C) 2003-2005 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- --
@@ -31,8 +31,6 @@
-- --
------------------------------------------------------------------------------
-with Ada.Interrupts;
-
-- This package provides operations for querying and setting the blocked
-- status of signals.
@@ -40,6 +38,8 @@ with Ada.Interrupts;
-- corresponds to software signals on the target, and where System.Interrupts
-- provides the ability to block and unblock signals.
+with Ada.Interrupts;
+
package GNAT.Signals is
procedure Block_Signal (Signal : Ada.Interrupts.Interrupt_ID);
@@ -48,8 +48,7 @@ package GNAT.Signals is
procedure Unblock_Signal (Signal : Ada.Interrupts.Interrupt_ID);
-- Unblock "Signal" at the process level
- function Is_Blocked (Signal : Ada.Interrupts.Interrupt_ID)
- return Boolean;
+ function Is_Blocked (Signal : Ada.Interrupts.Interrupt_ID) return Boolean;
-- "Signal" blocked at the process level?
end GNAT.Signals;