aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2014-08-13 16:59:05 +0000
committerSylvestre Ledru <sylvestre@gcc.gnu.org>2014-08-13 16:59:05 +0000
commitf9089781ebc147de36d1d98f6021d444b6ab4c0a (patch)
treef1dfad3104dbd7da39556d4b11e02cef88815322
parentaf1e01525ff25d7fe3935b3a1c3f10e3a16ec9eb (diff)
downloadgcc-f9089781ebc147de36d1d98f6021d444b6ab4c0a.zip
gcc-f9089781ebc147de36d1d98f6021d444b6ab4c0a.tar.gz
gcc-f9089781ebc147de36d1d98f6021d444b6ab4c0a.tar.bz2
9drpc.adb: Fix a typo
2014-08-13 Sylvestre Ledru <sylvestre@debian.org> * 9drpc.adb: Fix a typo * s-interr.ads: Likewise * s-taskin.ads: Likewise * s-traces.ads: Likewise * sysdep.c: Likewise From-SVN: r213917
-rw-r--r--gcc/ada/9drpc.adb2
-rw-r--r--gcc/ada/ChangeLog8
-rw-r--r--gcc/ada/s-interr.ads4
-rw-r--r--gcc/ada/s-taskin.ads2
-rw-r--r--gcc/ada/s-traces.ads8
-rw-r--r--gcc/ada/sysdep.c2
6 files changed, 17 insertions, 9 deletions
diff --git a/gcc/ada/9drpc.adb b/gcc/ada/9drpc.adb
index 787f0b0..3dec199 100644
--- a/gcc/ada/9drpc.adb
+++ b/gcc/ada/9drpc.adb
@@ -600,7 +600,7 @@ package body System.RPC is
Header : aliased Params_Stream_Type (Header_Size);
begin
- -- For more informations, see above
+ -- For more information, see above
-- Request = 0 as we are not waiting for a reply message
-- Result length = 0 as we don't expect a result at all
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 10c05a2..0e5c39d 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,11 @@
+2014-08-13 Sylvestre Ledru <sylvestre@debian.org>
+
+ * 9drpc.adb: Fix a typo
+ * s-interr.ads: Likewise
+ * s-taskin.ads: Likewise
+ * s-traces.ads: Likewise
+ * sysdep.c: Likewise
+
2014-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* socket.c: For RTEMS, use correct prototype of gethostbyname_r().
diff --git a/gcc/ada/s-interr.ads b/gcc/ada/s-interr.ads
index c1ac164..e61f3ab 100644
--- a/gcc/ada/s-interr.ads
+++ b/gcc/ada/s-interr.ads
@@ -191,8 +191,8 @@ package System.Interrupts is
-- with it (types to be used are New_Handler_Item and New_Handler_Array).
-- On finalization, we need to restore the handlers that were installed
-- before the elaboration of the PO, so we need to store these previous
- -- handlers. This is also done by Install_Handlers, the room for these
- -- informations is provided by adding a discriminant which is the number
+ -- handlers. This is also done by Install_Handlers, the room for this
+ -- information is provided by adding a discriminant which is the number
-- of Attach_Handler pragmas and an array of this size in the protection
-- type, Static_Interrupt_Protection.
diff --git a/gcc/ada/s-taskin.ads b/gcc/ada/s-taskin.ads
index 761bd2b..a2f63a9 100644
--- a/gcc/ada/s-taskin.ads
+++ b/gcc/ada/s-taskin.ads
@@ -671,7 +671,7 @@ package System.Tasking is
-- Task_Info pragma.
Analyzer : System.Stack_Usage.Stack_Analyzer;
- -- For storing informations used to measure the stack usage
+ -- For storing information used to measure the stack usage
Global_Task_Lock_Nesting : Natural;
-- This is the current nesting level of calls to
diff --git a/gcc/ada/s-traces.ads b/gcc/ada/s-traces.ads
index f1b3f8a..7481982 100644
--- a/gcc/ada/s-traces.ads
+++ b/gcc/ada/s-traces.ads
@@ -34,17 +34,17 @@
-- Warning : NO dependencies to tasking should be created here
-- This package, and all its children are used to implement debug
--- informations
+-- information
-- A new primitive, Send_Trace_Info (Id : Trace_T; 'data') is introduced.
--- Trace_T is an event identifier, 'data' are the informations to pass
+-- Trace_T is an event identifier, 'data' are the information to pass
-- with the event. This procedure is used from within the Runtime to send
--- debug informations.
+-- debug information.
-- This primitive is overloaded in System.Traces.Tasking and this package
-- Send_Trace_Info calls Send_Trace, in System.Traces.Send, which is target
--- dependent, to send the debug informations to a debugger, stream ..
+-- dependent, to send the debug information to a debugger, stream ..
-- To add a new event, just add them to the Trace_T type, and write the
-- corresponding Send_Trace_Info procedure. It may be required for some
diff --git a/gcc/ada/sysdep.c b/gcc/ada/sysdep.c
index 3008c78..bdda22c 100644
--- a/gcc/ada/sysdep.c
+++ b/gcc/ada/sysdep.c
@@ -742,7 +742,7 @@ __gnat_localtime_tzoff (const time_t *timer, const int *is_historic, long *off)
* 10000000ULL;
/* If GetTimeZoneInformation does not return a value between 0 and 2 then
- it means that we were not able to retrieve timezone informations. Note
+ it means that we were not able to retrieve timezone information. Note
that we cannot use here FileTimeToLocalFileTime as Windows will use in
always in this case the current timezone setting. As suggested on MSDN
we use the following three system calls to get the right information.