summaryrefslogtreecommitdiff
path: root/gcc/ada/5lintman.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/5lintman.adb')
-rw-r--r--gcc/ada/5lintman.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/5lintman.adb b/gcc/ada/5lintman.adb
index d58987d56ae..6737f0094ef 100644
--- a/gcc/ada/5lintman.adb
+++ b/gcc/ada/5lintman.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- $Revision$
+-- $Revision: 1.2 $
-- --
-- Copyright (C) 1991-2001 Florida State University --
-- --
@@ -220,7 +220,7 @@ package body System.Interrupt_Management is
-- ??? The original signal mask (the one we had before coming into this
-- signal catching function) should be restored by
- -- Raise_From_Signal_Handler. For now, restore it explicitely
+ -- Raise_From_Signal_Handler. For now, restore it explicitly
Result := pthread_sigmask (SIG_UNBLOCK, Signal_Mask'Access, null);
pragma Assert (Result = 0);
@@ -290,7 +290,7 @@ begin
-- not restored after the exception (longjmp) from the handler.
-- The right fix should be made in sigsetjmp so that we save
-- the Signal_Set and restore it after a longjmp.
- -- Since SA_NODEFER is obsolete, instead we reset explicitely
+ -- Since SA_NODEFER is obsolete, instead we reset explicitly
-- the mask in the exception handler.
Result := sigemptyset (Signal_Mask'Access);