Commit 1e22f442 by Vasiliy Fofanov Committed by Arnaud Charlet

g-socthi-vms.ads (Fd_Set_Access): make it 32-bit.

2007-12-06  Vasiliy Fofanov  <fofanov@adacore.com>
	    Tristan Gingold  <gingold@adacore.com>

	* g-socthi-vms.ads (Fd_Set_Access): make it 32-bit.

	* s-osprim-vms.adb,
	a-calend-vms.adb: Remove pragma warning off and add pragma
	unreferenced.

From-SVN: r130876
parent aee21c6f
......@@ -37,8 +37,6 @@ with System.Aux_DEC; use System.Aux_DEC;
with Ada.Unchecked_Conversion;
pragma Warnings (Off); -- temp till we fix out param warnings ???
package body Ada.Calendar is
--------------------------
......@@ -439,6 +437,7 @@ package body Ada.Calendar is
M : Month_Number;
D : Day_Number;
S : Day_Duration;
pragma Unreferenced (Y, M, S);
begin
Split (Date, Y, M, D, S);
return D;
......@@ -476,6 +475,7 @@ package body Ada.Calendar is
M : Month_Number;
D : Day_Number;
S : Day_Duration;
pragma Unreferenced (Y, D, S);
begin
Split (Date, Y, M, D, S);
return M;
......@@ -490,6 +490,7 @@ package body Ada.Calendar is
M : Month_Number;
D : Day_Number;
S : Day_Duration;
pragma Unreferenced (Y, M, D);
begin
Split (Date, Y, M, D, S);
return S;
......@@ -619,6 +620,7 @@ package body Ada.Calendar is
M : Month_Number;
D : Day_Number;
S : Day_Duration;
pragma Unreferenced (M, D, S);
begin
Split (Date, Y, M, D, S);
return Y;
......
......@@ -44,6 +44,7 @@ with GNAT.OS_Lib;
with GNAT.Sockets.Constants;
with System;
with System.Aux_DEC;
package GNAT.Sockets.Thin is
......@@ -80,7 +81,7 @@ package GNAT.Sockets.Thin is
end Host_Error_Messages;
subtype Fd_Set_Access is System.Address;
subtype Fd_Set_Access is System.Aux_DEC.Short_Address;
No_Fd_Set : constant Fd_Set_Access := System.Null_Address;
type time_t is
......
......@@ -177,6 +177,7 @@ package body System.OS_Primitives is
is
Sleep_Time : OS_Time;
Status : Cond_Value_Type;
pragma Unreferenced (Status);
begin
Sleep_Time := To_OS_Time (Time, Mode);
......
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