9drpc.adb: Fix a typo
authorSylvestre Ledru <sylvestre@debian.org>
Wed, 13 Aug 2014 16:59:05 +0000 (16:59 +0000)
committerSylvestre Ledru <sylvestre@gcc.gnu.org>
Wed, 13 Aug 2014 16:59:05 +0000 (16:59 +0000)
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

gcc/ada/9drpc.adb
gcc/ada/ChangeLog
gcc/ada/s-interr.ads
gcc/ada/s-taskin.ads
gcc/ada/s-traces.ads
gcc/ada/sysdep.c

index 787f0b02066fa12c6dc840b4f497d95b2b9573f8..3dec199a263bdcaebd2296040a0f4856c7435e7a 100644 (file)
@@ -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
 
index 10c05a26b3c4b0707066cdefef96e267b1b3a97d..0e5c39d3c373791ca986e2a7d71bf46434b258a5 100644 (file)
@@ -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().
index c1ac164f1248612b6202ead0e088810ed2189778..e61f3ab9ec9a1d2cd5da772bfc6c6b7460d96d1e 100644 (file)
@@ -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.
 
index 761bd2b629af05d1fb360bd4face1705ab5f3fe9..a2f63a9cce8f8918f4e1429427dab45b4eb00678 100644 (file)
@@ -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
index f1b3f8a6fed14ae3321b1aeeb3c5b2c991e0f182..74819823f6e2a1dffac7c9e5aa35180894502f6c 100644 (file)
 --  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
index 3008c7874307ed025a932bdaf0d0aeedf25fd5a7..bdda22cc69f64ed4635bf112b0eaf8d54cc8318c 100644 (file)
@@ -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.