summaryrefslogtreecommitdiff
path: root/gcc/ada/7sintman.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/7sintman.adb')
-rw-r--r--gcc/ada/7sintman.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/7sintman.adb b/gcc/ada/7sintman.adb
index 2e0a85ca894..dcd56df2a6d 100644
--- a/gcc/ada/7sintman.adb
+++ b/gcc/ada/7sintman.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- $Revision: 1.14 $
+-- $Revision: 1.1 $
-- --
-- Copyright (C) 1991-2001, Florida State University --
-- --
@@ -111,7 +111,7 @@ package body System.Interrupt_Management is
begin
-- With the __builtin_longjmp, the signal mask is not restored, so we
- -- need to restore it explicitely.
+ -- need to restore it explicitly.
Result := pthread_sigmask (SIG_UNBLOCK, Signal_Mask'Access, null);
pragma Assert (Result = 0);
@@ -176,7 +176,7 @@ begin
-- 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);