Commit 7730df14 by Arnaud Charlet

[multiple changes]

2010-10-12  Thomas Quinot  <quinot@adacore.com>

	* a-exetim.ads: Minor reformatting.
	* g-socket.ads (Port_Type): Better definition corresponding to the
	actual standard range.
	* exp_ch5.adb: Add comment.
	* sem_aux.adb: Minor reformatting.

2010-10-12  Ed Schonberg  <schonberg@adacore.com>

	* sem_ch12.adb (Copy_Generic_Node): If node is a string literal, remove
	string_literal_subtype so that a new one can be constructed in the
	scope of the instance.

From-SVN: r165357
parent c775c209
2010-10-12 Thomas Quinot <quinot@adacore.com>
* a-exetim.ads: Minor reformatting.
* g-socket.ads (Port_Type): Better definition corresponding to the
actual standard range.
* exp_ch5.adb: Add comment.
* sem_aux.adb: Minor reformatting.
2010-10-12 Ed Schonberg <schonberg@adacore.com>
* sem_ch12.adb (Copy_Generic_Node): If node is a string literal, remove
string_literal_subtype so that a new one can be constructed in the
scope of the instance.
2010-10-12 Robert Dewar <dewar@adacore.com> 2010-10-12 Robert Dewar <dewar@adacore.com>
* exp_ch9.adb (Has_Pragma_Priority): New name for Has_Priority_Pragma * exp_ch9.adb (Has_Pragma_Priority): New name for Has_Priority_Pragma
......
...@@ -37,8 +37,8 @@ package Ada.Execution_Time is ...@@ -37,8 +37,8 @@ package Ada.Execution_Time is
CPU_Tick : constant Ada.Real_Time.Time_Span; CPU_Tick : constant Ada.Real_Time.Time_Span;
function Clock function Clock
(T : Ada.Task_Identification.Task_Id (T : Ada.Task_Identification.Task_Id :=
:= Ada.Task_Identification.Current_Task) Ada.Task_Identification.Current_Task)
return CPU_Time; return CPU_Time;
function "+" function "+"
......
...@@ -1759,6 +1759,7 @@ package body Exp_Ch5 is ...@@ -1759,6 +1759,7 @@ package body Exp_Ch5 is
-- has discriminants (necessarily with defaults) a check may still be -- has discriminants (necessarily with defaults) a check may still be
-- necessary if the Lhs is aliased. The private determinants must be -- necessary if the Lhs is aliased. The private determinants must be
-- visible to build the discriminant constraints. -- visible to build the discriminant constraints.
-- What is a "determinant"???
-- Only an explicit dereference that comes from source indicates -- Only an explicit dereference that comes from source indicates
-- aliasing. Access to formals of protected operations and entries -- aliasing. Access to formals of protected operations and entries
......
...@@ -478,13 +478,14 @@ package GNAT.Sockets is ...@@ -478,13 +478,14 @@ package GNAT.Sockets is
-- more data can be transmitted. Neither transmission nor reception can be -- more data can be transmitted. Neither transmission nor reception can be
-- performed with Shut_Read_Write. -- performed with Shut_Read_Write.
type Port_Type is new Natural; type Port_Type is range 0 .. 16#ffff#;
-- Classical port definition. No_Port provides a special value to -- TCP/UDP port number
-- denote uninitialized port. Any_Port provides a special value
-- enabling all ports.
Any_Port : constant Port_Type; Any_Port : constant Port_Type;
No_Port : constant Port_Type; -- All ports
No_Port : constant Port_Type;
-- Uninitialized port number
type Inet_Addr_Type (Family : Family_Type := Family_Inet) is private; type Inet_Addr_Type (Family : Family_Type := Family_Inet) is private;
-- An Internet address depends on an address family (IPv4 contains 4 octets -- An Internet address depends on an address family (IPv4 contains 4 octets
...@@ -975,8 +976,8 @@ package GNAT.Sockets is ...@@ -975,8 +976,8 @@ package GNAT.Sockets is
Count : out Ada.Streams.Stream_Element_Count; Count : out Ada.Streams.Stream_Element_Count;
Flags : Request_Flag_Type := No_Request_Flag); Flags : Request_Flag_Type := No_Request_Flag);
-- Transmit data gathered from the set of vector elements Vector to a -- Transmit data gathered from the set of vector elements Vector to a
-- socket. Count is set to the count of transmitted stream elements. -- socket. Count is set to the count of transmitted stream elements. Flags
-- Flags allow control over transmission. -- allow control over transmission.
procedure Set_Socket_Option procedure Set_Socket_Option
(Socket : Socket_Type; (Socket : Socket_Type;
...@@ -987,10 +988,9 @@ package GNAT.Sockets is ...@@ -987,10 +988,9 @@ package GNAT.Sockets is
procedure Shutdown_Socket procedure Shutdown_Socket
(Socket : Socket_Type; (Socket : Socket_Type;
How : Shutmode_Type := Shut_Read_Write); How : Shutmode_Type := Shut_Read_Write);
-- Shutdown a connected socket. If How is Shut_Read, further receives will -- Shutdown a connected socket. If How is Shut_Read further receives will
-- be disallowed. If How is Shut_Write, further sends will be disallowed. -- be disallowed. If How is Shut_Write further sends will be disallowed.
-- If how is Shut_Read_Write, further sends and receives will be -- If How is Shut_Read_Write further sends and receives will be disallowed.
-- disallowed.
type Stream_Access is access all Ada.Streams.Root_Stream_Type'Class; type Stream_Access is access all Ada.Streams.Root_Stream_Type'Class;
-- Same interface as Ada.Streams.Stream_IO -- Same interface as Ada.Streams.Stream_IO
...@@ -1010,9 +1010,9 @@ package GNAT.Sockets is ...@@ -1010,9 +1010,9 @@ package GNAT.Sockets is
procedure Free is new Ada.Unchecked_Deallocation procedure Free is new Ada.Unchecked_Deallocation
(Ada.Streams.Root_Stream_Type'Class, Stream_Access); (Ada.Streams.Root_Stream_Type'Class, Stream_Access);
-- Destroy a stream created by one of the Stream functions above, -- Destroy a stream created by one of the Stream functions above, releasing
-- releasing the corresponding resources. The user is responsible for -- the corresponding resources. The user is responsible for calling this
-- calling this subprogram when the stream is not needed anymore. -- subprogram when the stream is not needed anymore.
type Socket_Set_Type is limited private; type Socket_Set_Type is limited private;
-- This type allows to manipulate sets of sockets. It allows to wait for -- This type allows to manipulate sets of sockets. It allows to wait for
...@@ -1058,16 +1058,18 @@ package GNAT.Sockets is ...@@ -1058,16 +1058,18 @@ package GNAT.Sockets is
-- can block the full process (not just the calling thread). -- can block the full process (not just the calling thread).
-- --
-- Check_Selector provides the very same behaviour. The only difference is -- Check_Selector provides the very same behaviour. The only difference is
-- that it does not watch for exception events. Note that on some -- that it does not watch for exception events. Note that on some platforms
-- platforms it is kept process blocking on purpose. The timeout parameter -- it is kept process blocking on purpose. The timeout parameter allows the
-- allows the user to have the behaviour he wants. Abort_Selector allows -- user to have the behaviour he wants. Abort_Selector allows to safely
-- to safely abort a blocked Check_Selector call. A special socket -- abort a blocked Check_Selector call. A special socket is opened by
-- is opened by Create_Selector and included in each call to -- Create_Selector and included in each call to Check_Selector.
-- Check_Selector. Abort_Selector causes an event to occur on this --
-- descriptor in order to unblock Check_Selector. Note that each call to -- Abort_Selector causes an event to occur on this descriptor in order to
-- Abort_Selector will cause exactly one call to Check_Selector to return -- unblock Check_Selector. Note that each call to Abort_Selector will cause
-- with Aborted status. The special socket created by Create_Selector is -- exactly one call to Check_Selector to return with Aborted status. The
-- closed when Close_Selector is called. -- special socket created by Create_Selector is closed when Close_Selector
-- is called.
--
-- A typical case where it is useful to abort a Check_Selector operation is -- A typical case where it is useful to abort a Check_Selector operation is
-- the situation where a change to the monitored sockets set must be made. -- the situation where a change to the monitored sockets set must be made.
...@@ -1098,9 +1100,9 @@ package GNAT.Sockets is ...@@ -1098,9 +1100,9 @@ package GNAT.Sockets is
-- R_Socket_Set and W_Socket_Set (even if they denote the same set of -- R_Socket_Set and W_Socket_Set (even if they denote the same set of
-- Sockets), or some event may be lost. -- Sockets), or some event may be lost.
-- --
-- Socket_Error is raised when the select(2) system call returns an -- Socket_Error is raised when the select(2) system call returns an error
-- error condition, or when a read error occurs on the signalling socket -- condition, or when a read error occurs on the signalling socket used for
-- used for the implementation of Abort_Selector. -- the implementation of Abort_Selector.
procedure Check_Selector procedure Check_Selector
(Selector : Selector_Type; (Selector : Selector_Type;
......
...@@ -204,8 +204,7 @@ package body Sem_Aux is ...@@ -204,8 +204,7 @@ package body Sem_Aux is
begin begin
pragma Assert pragma Assert
(Has_Discriminants (Typ) (Has_Discriminants (Typ) or else Has_Unknown_Discriminants (Typ));
or else Has_Unknown_Discriminants (Typ));
Ent := First_Entity (Typ); Ent := First_Entity (Typ);
......
...@@ -6211,15 +6211,25 @@ package body Sem_Ch12 is ...@@ -6211,15 +6211,25 @@ package body Sem_Ch12 is
end if; end if;
end; end;
elsif Nkind_In (N, N_Integer_Literal, elsif Nkind_In (N, N_Integer_Literal, N_Real_Literal) then
N_Real_Literal,
N_String_Literal)
then
-- No descendant fields need traversing -- No descendant fields need traversing
null; null;
-- For the remaining nodes, copy recursively their descendants elsif Nkind (N) = N_String_Literal
and then Present (Etype (N))
and then Instantiating
then
-- If the string is declared in an outer scope, the string_literal
-- subtype created for it may have the wrong scope. We force the
-- reanalysis of the constant to generate a new itype in the proper
-- context.
Set_Etype (New_N, Empty);
Set_Analyzed (New_N, False);
-- For the remaining nodes, copy their descendants recursively
else else
Copy_Descendants; Copy_Descendants;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment