diff options
Diffstat (limited to 'gcc/ada/g-soccon-vms.ads')
-rw-r--r-- | gcc/ada/g-soccon-vms.ads | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/ada/g-soccon-vms.ads b/gcc/ada/g-soccon-vms.ads index 3b0f20fe61c..85996efa3cd 100644 --- a/gcc/ada/g-soccon-vms.ads +++ b/gcc/ada/g-soccon-vms.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2000-2005 Free Software Foundation, Inc. -- +-- Copyright (C) 2000-2005, 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- -- @@ -169,4 +169,13 @@ package GNAT.Sockets.Constants is IOV_MAX : constant := 1024; -- Maximum writev iovcnt + ---------------------- + -- Type definitions -- + ---------------------- + + -- Sizes (in bytes) of the components of struct timeval + + SIZEOF_tv_sec : constant := 4; -- tv_sec + SIZEOF_tv_usec : constant := 4; -- tv_usec + end GNAT.Sockets.Constants; |