re PR ada/54040 ([x32] Incorrect timeval and timespec)

PR ada/54040
	PR ada/59346
	* s-osinte-hpux.ads (timespec): Change type of tv_nsec field to time_t.
	* s-osinte-kfreebsd-gnu.ads (timespec): Likewise.
	* s-osinte-solaris-posix.ads (timespec): Likewise.

From-SVN: r205532
This commit is contained in:
Eric Botcazou 2013-11-29 16:19:36 +00:00 committed by Eric Botcazou
parent fba0d71e26
commit b66eaab22a
4 changed files with 15 additions and 7 deletions

View File

@ -1,3 +1,11 @@
2013-11-29 Eric Botcazou <ebotcazou@adacore.com>
PR ada/54040
PR ada/59346
* s-osinte-hpux.ads (timespec): Change type of tv_nsec field to time_t.
* s-osinte-kfreebsd-gnu.ads (timespec): Likewise.
* s-osinte-solaris-posix.ads (timespec): Likewise.
2013-11-23 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/trans.c (Loop_Statement_to_gnu): Set TREE_SIDE_EFFECTS

View File

@ -7,7 +7,7 @@
-- S p e c --
-- --
-- Copyright (C) 1991-1994, Florida State University --
-- Copyright (C) 1995-2012, Free Software Foundation, Inc. --
-- Copyright (C) 1995-2013, 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- --
@ -522,7 +522,7 @@ private
type timespec is record
tv_sec : time_t;
tv_nsec : long;
tv_nsec : time_t;
end record;
pragma Convention (C, timespec);

View File

@ -6,8 +6,8 @@
-- --
-- S p e c --
-- --
-- Copyright (C) 1991-1994, Florida State University --
-- Copyright (C) 1995-2005,2008,2012 Free Software Foundation, Inc. --
-- Copyright (C) 1991-1994, Florida State University --
-- Copyright (C) 1995-2013, 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- --
@ -492,7 +492,7 @@ private
type timespec is record
tv_sec : time_t;
tv_nsec : long;
tv_nsec : time_t;
end record;
pragma Convention (C, timespec);

View File

@ -7,7 +7,7 @@
-- S p e c --
-- --
-- Copyright (C) 1991-1994, Florida State University --
-- Copyright (C) 1995-2011, Free Software Foundation, Inc. --
-- Copyright (C) 1995-2013, 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- --
@ -513,7 +513,7 @@ private
type timespec is record
tv_sec : time_t;
tv_nsec : long;
tv_nsec : time_t;
end record;
pragma Convention (C, timespec);