* Makefile.in (rtlanal.o): Depend on $(TM_P_H).
[official-gcc.git] / libchill / waituntil.c
blob2245a81809adcde9a485fd8c093e08edc4f3b5b5
1 /* Implement timing-related runtime actions for CHILL.
2 Copyright (C) 1992,1993 Free Software Foundation, Inc.
3 Author: Wilfried Moser
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
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. */
29 #include "rtltypes.h"
30 #include "rts.h"
32 EXCEPTION (timerfail);
35 * function __wait_until
37 * parameters:
38 * abstime absolute time value
39 * filename
40 * linenumber
42 * returns:
43 * int 0 on success, 1 on failure
45 * exceptions:
46 * timerfail
48 * abstract:
49 * check for given argument is valid, calculate how long to wait in
50 * seconds and call os to do it.
54 int
55 __wait_until (abstime, filename, linenumber)
56 unsigned long abstime;
57 char *filename;
58 int linenumber;
60 RtsTime now, delta, abs_rtstime;
62 /* get current time */
63 __rtstime (&now);
65 abs_rtstime.secs = abstime;
66 abs_rtstime.nanosecs = 0;
68 if (abs_rtstime.nanosecs < now.nanosecs)
70 abs_rtstime.secs--;
71 abs_rtstime.nanosecs += 1000000000;
74 delta.secs = abs_rtstime.secs - now.secs;
75 delta.nanosecs = abs_rtstime.nanosecs - now.nanosecs;
77 if (delta.secs > abs_rtstime.secs)
78 /* cannot wait into past */
79 return 1;
81 return __delay_this (wait_wait, &delta, filename, linenumber) == 1 ? 0 : 1;