+2016-07-07 Thomas Quinot <quinot@adacore.com>
+
+ * g-socket.ads: Document performance consideration for stream
+ wrapper.
+
+2016-07-07 Arnaud Charlet <charlet@adacore.com>
+
+ * osint-c.ads (Set_File_Name): Clarify spec.
+
2016-07-07 Eric Botcazou <ebotcazou@adacore.com>
* freeze.adb: Reenable code.
-- Same interface as Ada.Streams.Stream_IO
function Stream (Socket : Socket_Type) return Stream_Access;
- -- Create a stream associated with an already connected stream-based socket
+ -- Create a stream associated with a connected stream-based socket.
+ -- Note: keep in mind that the default stream attributes for composite
+ -- types perform separate Read/Write operations for each component,
+ -- recursively. If performance is an issue, you may want to consider
+ -- introducing a buffering stage.
function Stream
(Socket : Socket_Type;
-- --
-- S p e c --
-- --
--- Copyright (C) 2001-2015, Free Software Foundation, Inc. --
+-- Copyright (C) 2001-2016, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
procedure Set_File_Name (Ext : String);
-- Sets a default file name from the main compiler source name. Ext is the
-- extension, e.g. "ali" for a library information file. The name is in
- -- Name_Buffer (with length in Name_Len) on return.
+ -- Name_Buffer (with length in Name_Len) on return, with
+ -- Name_Buffer (Name_Len) always set to ASCII.NUL.
--------------------------------
-- Library Information Output --