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
This commit is contained in:
Sylvestre Ledru 2014-08-13 16:59:05 +00:00 committed by Sylvestre Ledru
parent af1e01525f
commit f9089781eb
6 changed files with 17 additions and 9 deletions

View 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

View 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().

View 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.

View 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

View File

@ -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

View 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.