1/* Implement timing-related runtime actions for CHILL.
2   Copyright (C) 1992,1993 Free Software Foundation, Inc.
3   Author: Wilfried Moser
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING.  If not, write to
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA.  */
21
22/* As a special exception, if you link this library with other files,
23   some of which are compiled with GCC, to produce an executable,
24   this library does not by itself cause the resulting executable
25   to be covered by the GNU General Public License.
26   This exception does not however invalidate any other reasons why
27   the executable file might be covered by the GNU General Public License.  */
28
29#include "rtltypes.h"
30#include "rts.h"
31
32EXCEPTION (timerfail);
33
34/*
35 * function __wait_until
36 *
37 * parameters:
38 *     abstime   absolute time value
39 *     filename
40 *     linenumber
41 *
42 * returns:
43 *     int   0 on success, 1 on failure
44 *
45 * exceptions:
46 *     timerfail
47 *
48 * abstract:
49 *     check for given argument is valid, calculate how long to wait in
50 *     seconds and call os to do it.
51 *
52 */
53
54int
55__wait_until (abstime, filename, linenumber)
56     unsigned long  abstime;
57     char          *filename;
58     int            linenumber;
59{
60  RtsTime	now, delta, abs_rtstime;
61
62  /* get current time */
63  __rtstime (&now);
64
65  abs_rtstime.secs = abstime;
66  abs_rtstime.nanosecs = 0;
67
68  if (abs_rtstime.nanosecs < now.nanosecs)
69    {
70      abs_rtstime.secs--;
71      abs_rtstime.nanosecs += 1000000000;
72    }
73
74  delta.secs = abs_rtstime.secs - now.secs;
75  delta.nanosecs = abs_rtstime.nanosecs - now.nanosecs;
76
77  if (delta.secs > abs_rtstime.secs)
78    /* cannot wait into past */
79    return 1;
80
81  return __delay_this (wait_wait, &delta, filename, linenumber) == 1 ? 0 : 1;
82}
83