home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / i-cpotim.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  94 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --             I N T E R F A C E S . C . P O S I X _ T I M E R S            --
  6. --                                                                          --
  7. --                                  S p e c                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.8 $                             --
  10. --                                                                          --
  11. --      Copyright (c) 1991,1992,1993,1994,1995 FSU, All Rights Reserved     --
  12. --                                                                          --
  13. -- GNARL is free software; you can redistribute it  and/or modify it  under --
  14. -- terms  of  the  GNU  Library General Public License  as published by the --
  15. -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
  16. -- later  version.  GNARL is distributed  in the hope that  it will be use- --
  17. -- ful, but but WITHOUT ANY WARRANTY;  without even the implied warranty of --
  18. -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. -- eral Library Public License  for more details.  You should have received --
  20. -- a  copy of the GNU Library General Public License along with GNARL;  see --
  21. -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,  675 --
  22. -- Mass Ave, Cambridge, MA 02139, USA.                                      --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with System;
  27.  
  28. with Interfaces.C.POSIX_Error;
  29. --  Used for Return_Code
  30.  
  31. with Interfaces.C.System_Constants;
  32. --  For constants defining timespec layout
  33.  
  34. package Interfaces.C.POSIX_Timers is
  35.  
  36.    use Interfaces.C.POSIX_Error;
  37.    use Interfaces.C.System_Constants;
  38.    package ICCS renames Interfaces.C.System_Constants;
  39.  
  40.    Alignment : constant := Natural'Min (Standard'Maximum_Alignment, 8);
  41.  
  42.    type time_t is new long;
  43.  
  44.    type Nanoseconds is new long;
  45.  
  46.    subtype Fractional_Second is Nanoseconds range 0 .. 10#1#E9 - 1;
  47.    --  This is dependent on the stdtypes.h header file.
  48.  
  49.    type timespec is record
  50.       tv_sec : time_t;
  51.       tv_nsec : Fractional_Second;
  52.    end record;
  53.  
  54.    --  Lay out the POSIX-defined components of the timespec record to
  55.    --  match their C definition, using information in the i-csycon.ads file.
  56.  
  57.    timespec_First : constant timespec :=
  58.      timespec' (time_t'First, Fractional_Second'First);
  59.  
  60.    timespec_Last : constant timespec :=
  61.      timespec' (time_t'Last, Fractional_Second'Last);
  62.  
  63.    timespec_Zero : constant timespec :=
  64.      timespec' (time_t'First, Fractional_Second'First);
  65.  
  66.    timespec_Unit : constant timespec :=
  67.      timespec' (time_t'First, Fractional_Second'First + 1);
  68.    --  This is dependent on the POSIX.4 implementation; the draft standard
  69.    --  only says that fields of these names and types (with Integer for long)
  70.    --  will be in the record.  There may be other fields, and these do not
  71.    --  have to be in the indicated position.  This should really be done by
  72.    --  getting the sizes and offsets using get_POSIX_Constants and building
  73.    --  the record to match using representation clauses.
  74.  
  75.    --  temporarily, should really only be for 1???
  76.    type clock_id_t is private;
  77.  
  78.    CLOCK_REALTIME : constant clock_id_t;
  79.  
  80.    procedure clock_gettime
  81.      (ID     : clock_id_t;
  82.       CT     : out timespec;
  83.       Result : out Return_Code);
  84.  
  85. private
  86.  
  87.    type clock_id_t is new long;
  88.    --  This clock_id_t is defined as an long in POSIX
  89.  
  90.    CLOCK_REALTIME : constant clock_id_t := 0;
  91.    --  We currently implement only Realtime clock.
  92.  
  93. end Interfaces.C.POSIX_Timers;
  94.