1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
|
/* "time.c" functions dealing with time.
* Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1997, 2006 Free Software Foundation, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
/* Author: Aubrey Jaffer */
#include "scm.h"
#ifdef STDC_HEADERS
# include <time.h>
# ifdef M_SYSV
# include <sys/types.h>
# include <sys/times.h>
# endif
# ifdef sun
# include <sys/types.h>
# include <sys/times.h>
# endif
# ifdef ultrix
# include <sys/types.h>
# include <sys/times.h>
# endif
# ifdef nosve
# include <sys/types.h>
# include <sys/times.h>
# endif
# ifdef _UNICOS
# include <sys/types.h>
# include <sys/times.h>
# endif
# ifdef __IBMC__
# include <sys/timeb.h>
# endif
#else
# ifdef SVR2
# include <time.h>
# else
# ifndef ARM_ULIB
# include <sys/time.h>
# else
# include <time.h>
# endif
# endif
# include <sys/types.h>
# ifndef ARM_ULIB
# include <sys/times.h>
# else
# include <time.h>
# endif
#endif
/* Define this if your system lacks ftime(). */
/* #define LACK_FTIME */
/* Define this if your system has gettimeofday()
(LACK_FTIME should not be defined). */
/* #define USE_GETTIMEOFDAY */
/* Define this if your system lacks times(). */
/* #define LACK_TIMES */
#if defined(linux) || defined(__GLIBC__)
# include <sys/types.h>
# include <sys/time.h>
# include <sys/timeb.h>
# include <sys/times.h>
# include <unistd.h>
# define CLKTCK (sysconf(_SC_CLK_TCK))
# define USE_GETTIMEOFDAY
#endif
#ifdef __MACH__
# define unix
# include <sys/types.h>
# include <sys/time.h>
# include <sys/timeb.h>
# include <sys/times.h>
# define USE_GETTIMEOFDAY
#endif
#ifdef __FreeBSD__
# include <sys/types.h>
# include <sys/time.h>
# include <sys/timeb.h>
# define USE_GETTIMEOFDAY
#endif
#ifdef __NetBSD__
# include <sys/timeb.h>
# include <sys/times.h>
# define USE_GETTIMEOFDAY
#endif
#ifdef __OpenBSD__
# include <sys/types.h>
# include <sys/time.h>
# define USE_GETTIMEOFDAY
#endif
#ifdef __TURBOC__
# define LACK_TIMES
#endif
#if (__TURBOC__==1) /* Needed for TURBOC V1.0 */
# define LACK_FTIME
# undef MSDOS
#endif
#ifdef __HIGHC__
# define LACK_TIMES
#endif
#ifdef macintosh
# define LACK_FTIME
# define LACK_TIMES
# define CLK_TCK 60
#endif
#ifdef SVR2
# define LACK_FTIME
#endif
#ifdef SVR4
# define LACK_FTIME
#endif
#ifdef __SVR4
# define LACK_FTIME
#endif
#ifdef PLAN9
# define LACK_FTIME
# define LACK_TIMES
#endif
#ifdef nosve
# define LACK_FTIME
#endif
#ifdef GO32
# define LACK_FTIME
# define LACK_TIMES
#endif
#ifdef atarist
# define LACK_FTIME
# define LACK_TIMES
#endif
#ifdef ARM_ULIB
# define LACK_FTIME
# define LACK_TIMES
#endif
#ifdef _DCC
# define LACK_FTIME
#endif
#ifdef MSDOS
# ifndef GO32
# include <sys/types.h>
# include <sys/timeb.h>
# endif
#endif
#ifdef _UNICOS
# define LACK_FTIME
#endif
#ifdef __amigaos__
# include <sys/time.h>
# include <sys/timeb.h>
# include <sys/times.h>
# define USE_GETTIMEOFDAY
#endif
#ifndef LACK_FTIME
# ifdef HAVE_UNIX
# ifndef GO32
# include <sys/timeb.h>
# endif
# endif
#endif
#ifdef __EMX__
# define LACK_TIMES
# include <sys/types.h>
# include <sys/timeb.h>
#endif
#ifdef MWC
# include <time.h>
# include <sys/timeb.h>
#endif
#ifdef ARM_ULIB
# include <sys/types.h>
# include <time.h>
#endif
#ifdef vms
# define LACK_TIMES
# define LACK_FTIME
#endif
#ifndef CLKTCK
# ifdef CLK_TCK
# define CLKTCK CLK_TCK
# ifdef CLOCKS_PER_SEC
# ifdef HAVE_UNIX
# ifndef ARM_ULIB
# include <sys/times.h>
# endif
# define LACK_CLOCK
/* This is because clock() might be POSIX rather than ANSI.
This occurs on HP-UX machines */
# endif
# endif
# else
# ifdef CLOCKS_PER_SEC
# define CLKTCK CLOCKS_PER_SEC
# else
# define LACK_CLOCK
# ifdef AMIGA
# include <stddef.h>
# define LACK_TIMES
# define LACK_FTIME
# define CLKTCK 1000
# else
# define CLKTCK 60
# endif
# endif
# endif
#endif
#ifdef __STDC__
# define timet time_t
#else
# define timet long
#endif
#ifdef LACK_TIMES
# ifdef LACK_CLOCK
# ifdef AMIGA
/* From: "Fred Bayer" <bayerf@lan.informatik.tu-muenchen.de> */
# ifdef AZTEC_C /* AZTEC_C */
# include <devices/timer.h>
static long mytime()
{
long sec, mic, mili = 0;
struct timerequest *timermsg;
struct MsgPort *timerport;
if (!(timerport = (struct MsgPort *)CreatePort(0, 0))){
lputs("No mem for port.\n", cur_errp);
return mili;
}
if (!(timermsg = (struct timerequest *)
CreateExtIO(timerport, sizeof(struct timerequest)))){
lputs("No mem for timerequest.\n", cur_errp);
DeletePort(timermsg->tr_node.io_Message.mn_ReplyPort);
return mili;
}
if (!(OpenDevice(TIMERNAME, UNIT_MICROHZ, timermsg, 0))){
timermsg->tr_node.io_Command = TR_GETSYSTIME;
timermsg->tr_node.io_Flags = 0;
DoIO(timermsg);
sec = timermsg->tr_time.tv_secs;
mic = timermsg->tr_time.tv_micro;
mili = sec*1000+mic/1000;
CloseDevice(timermsg);
}
else lputs("No Timer available.\n", cur_errp);
DeletePort(timermsg->tr_node.io_Message.mn_ReplyPort);
DeleteExtIO(timermsg);
return mili ;
}
# else /* this is for SAS/C */
static long mytime()
{
unsigned int cl[2];
timer(cl);
return(cl[0]*1000+cl[1]/1000);
}
# endif /* AZTEC_C */
# else /* AMIGA */
# define mytime() ((time((timet*)0) - your_base) * CLKTCK)
# endif /* AMIGA */
# else /* LACK_CLOCK */
# define mytime clock
# endif /* LACK_CLOCK */
#else /* LACK_TIMES */
static long mytime()
{
struct tms time_buffer;
times(&time_buffer);
return time_buffer.tms_utime + time_buffer.tms_stime;
}
#endif /* LACK_TIMES */
#ifdef LACK_FTIME
# ifdef AMIGA
SCM your_time()
{
return MAKINUM(mytime());
}
# else
timet your_base = 0;
SCM your_time()
{
return MAKINUM((time((timet*)0) - your_base) * (int)CLKTCK);
}
# endif /* AMIGA */
#else /* LACK_FTIME */
# ifdef USE_GETTIMEOFDAY
int scm_ftime(time_buffer)
struct timeval *time_buffer;
{
struct timezone t_z;
if (gettimeofday(time_buffer, &t_z) < 0) return -1;
return 0;}
struct timeval your_base = {0, 0};
# define TIMETRIES 10
SCM your_time()
{
long tmp;
struct timeval time_buffer1;
struct timeval time_buffer2;
int cnt = 0;
tryagain:
cnt++;
scm_ftime(&time_buffer1);
scm_ftime(&time_buffer2);
if (time_buffer1.tv_sec==time_buffer2.tv_sec) {
if (time_buffer1.tv_usec > time_buffer2.tv_usec)
time_buffer2.tv_sec = time_buffer2.tv_sec + 1;
}
else if ((1 + time_buffer1.tv_sec)==time_buffer2.tv_sec) ;
else if (cnt < TIMETRIES) goto tryagain;
else { /* could not read two ftime()s within one second in 10 tries */
scm_warn("ftime()s too fast", "", MAKINUM(TIMETRIES));
return MAKINUM(-1);
}
tmp = CLKTCK*(time_buffer2.tv_usec - your_base.tv_usec);
tmp = CLKTCK*(time_buffer2.tv_sec - your_base.tv_sec) + tmp/1000000;
return MAKINUM(tmp);
}
# else /* USE_GETTIMEOFDAY */
# define scm_ftime ftime
struct timeb your_base = {0};
# define TIMETRIES 10
SCM your_time()
{
long tmp;
struct timeb time_buffer1;
struct timeb time_buffer2;
int cnt = 0;
tryagain:
cnt++;
scm_ftime(&time_buffer1);
scm_ftime(&time_buffer2);
if (time_buffer1.time==time_buffer2.time) {
if (time_buffer1.millitm > time_buffer2.millitm)
time_buffer2.time = time_buffer2.time + 1;
}
else if ((1 + time_buffer1.time)==time_buffer2.time) ;
else if (cnt < TIMETRIES) goto tryagain;
else { /* could not read two ftime()s within one second in 10 tries */
scm_warn("ftime()s too fast", "", MAKINUM(TIMETRIES));
return MAKINUM(-1);
}
tmp = CLKTCK*(time_buffer2.millitm - your_base.millitm);
tmp = CLKTCK*(time_buffer2.time - your_base.time) + tmp/1000;
return MAKINUM(tmp);
}
# endif /* USE_GETTIMEOFDAY */
#endif /* LACK_FTIME */
long my_base = 0;
SCM my_time()
{
return MAKINUM(mytime()-my_base);
}
SCM curtime()
{
timet timv = time((timet*)0);
SCM ans;
#ifndef _DCC
# ifdef STDC_HEADERS
# if (__TURBOC__ > 0x201)
timv = mktime(gmtime(&timv));
# endif
# endif
#endif
ans = ulong2num(timv);
return BOOL_F==ans ? MAKINUM(timv) : ans;
}
long time_in_msec(x)
long x;
{
if (CLKTCK==60) return (x*50)/3;
else
return (CLKTCK < 1000 ? x*(1000L/(long)CLKTCK) : (x*1000L)/(long)CLKTCK);
}
static iproc subr0s[] = {
{"get-internal-run-time", my_time},
{"get-internal-real-time", your_time},
{"current-time", curtime},
{0, 0}};
void reset_time()
{
#ifdef LACK_FTIME
# ifndef AMIGA
time(&your_base);
# endif
#else
scm_ftime(&your_base);
#endif
my_base = 0;
my_base = mytime();
}
void init_time()
{
sysintern("internal-time-units-per-second",
MAKINUM((long)CLKTCK));
reset_time();
init_iprocs(subr0s, tc7_subr_0);
}
|