2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / ada / s-osprim.ads
blob76cebb5ad20d2bda41d4f7d3b0fb1769dad6f8f8
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- S Y S T E M . O S _ P R I M I T I V E S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1998-2003 Free Software Foundation, Inc. --
10 -- --
11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNARL; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNARL was developed by the GNARL team at Florida State University. --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 -- This package provides low level primitives used to implement clock and
35 -- delays in non tasking applications.
37 -- The choice of the real clock/delay implementation (depending on whether
38 -- tasking is involved or not) is done via soft links (see s-tasoli.ads)
40 -- NEVER add any dependency to tasking packages here
42 package System.OS_Primitives is
44 Max_Sensible_Delay : constant Duration :=
45 Duration'Min (183 * 24 * 60 * 60.0,
46 Duration'Last);
47 -- Max of half a year delay, needed to prevent exceptions for large
48 -- delay values. It seems unlikely that any test will notice this
49 -- restriction, except in the case of applications setting the clock at
50 -- at run time (see s-tastim.adb). Also note that a larger value might
51 -- cause problems (e.g overflow, or more likely OS limitation in the
52 -- primitives used). In the case where half a year is too long (which
53 -- occurs in high integrity mode with 32-bit words, and possibly on
54 -- some specific ports of GNAT), Duration'Last is used instead.
56 function Clock return Duration;
57 pragma Inline (Clock);
58 -- Returns "absolute" time, represented as an offset
59 -- relative to "the Epoch", which is Jan 1, 1970 on unixes.
60 -- This implementation is affected by system's clock changes.
62 function Monotonic_Clock return Duration;
63 pragma Inline (Monotonic_Clock);
64 -- Returns "absolute" time, represented as an offset
65 -- relative to "the Epoch", which is Jan 1, 1970.
66 -- This clock implementation is immune to the system's clock changes.
68 Relative : constant := 0;
69 Absolute_Calendar : constant := 1;
70 Absolute_RT : constant := 2;
71 -- Values for Mode call below. Note that the compiler (exp_ch9.adb)
72 -- relies on these values. So any change here must be reflected in
73 -- corresponding changes in the compiler.
75 procedure Timed_Delay (Time : Duration; Mode : Integer);
76 -- Implements the semantics of the delay statement when no tasking is
77 -- used in the application.
79 -- Mode is one of the three values above
81 -- Time is a relative or absolute duration value, depending on Mode.
83 -- Note that currently Ada.Real_Time always uses the tasking run time, so
84 -- this procedure should never be called with Mode set to Absolute_RT.
85 -- This may change in future or bare board implementations.
87 end System.OS_Primitives;