2014-08-13 Sylvestre Ledru <sylvestre@debian.org>
authorsylvestre <sylvestre@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Aug 2014 16:59:05 +0000 (16:59 +0000)
committersylvestre <sylvestre@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Aug 2014 16:59:05 +0000 (16:59 +0000)
        * 9drpc.adb: Fix a typo
        * s-interr.ads: Likewise
        * s-taskin.ads: Likewise
        * s-traces.ads: Likewise
        * sysdep.c: Likewise

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213917 138bc75d-0d04-0410-961f-82ee72b054a4

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 787f0b0..3dec199 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 10c05a2..0e5c39d 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 c1ac164..e61f3ab 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 761bd2b..a2f63a9 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 f1b3f8a..7481982 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 3008c78..bdda22c 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.