Replace `iff' in comments.
[bpt/emacs.git] / src / systime.h
CommitLineData
10a4cc63 1/* systime.h - System-dependent definitions for time manipulations.
0b5538bd 2 Copyright (C) 1993, 1994, 2002, 2003, 2004,
4e6835db 3 2005, 2006, 2007 Free Software Foundation, Inc.
f469625a
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
684d6f5b 9the Free Software Foundation; either version 3, or (at your option)
f469625a
JB
10any later version.
11
12GNU Emacs 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 Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
f469625a 21
fb1b041d
DL
22#ifndef EMACS_SYSTIME_H
23#define EMACS_SYSTIME_H
482fa053 24
d712c26d 25#ifdef TIME_WITH_SYS_TIME
7b89707c 26#include <sys/time.h>
f469625a 27#include <time.h>
d712c26d 28#else
5cbdb356
JB
29#ifdef HAVE_SYS_TIME_H
30#include <sys/time.h>
d712c26d
JB
31#else
32#include <time.h>
98f77753 33#endif
b7cceaf1 34#endif
7b89707c 35
2ffe7ef2
RS
36#ifdef HAVE_TZNAME
37#ifndef tzname /* For SGI. */
38extern char *tzname[]; /* RS6000 and others want it this way. */
39#endif
40#endif
41
9e70858b
JB
42/* SVr4 doesn't actually declare this in its #include files. */
43#ifdef USG5_4
482fa053 44extern time_t timezone;
9e70858b
JB
45#endif
46
210b2b4f
JB
47#ifdef VMS
48#ifdef VAXC
49#include "vmstime.h"
50#endif
51#endif
52
71068d78
KH
53/* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h
54 disagree about the name of the guard symbol. */
c810639a 55#ifdef HPUX
71068d78
KH
56#ifdef _STRUCT_TIMEVAL
57#ifndef __TIMEVAL__
58#define __TIMEVAL__
59#endif
60#endif
c810639a 61#endif
10a4cc63 62\f
f469625a
JB
63/* EMACS_TIME is the type to use to represent temporal intervals -
64 struct timeval on some systems, int on others. It can be passed as
88729235 65 the timeout argument to the select system call.
f469625a
JB
66
67 EMACS_SECS (TIME) is an rvalue for the seconds component of TIME.
68 EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS.
69
e0f24100 70 EMACS_HAS_USECS is defined if EMACS_TIME has a usecs component.
7f86bdac
JB
71 EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME.
72 This returns zero if EMACS_TIME doesn't have a microseconds component.
73 EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS.
74 This does nothing if EMACS_TIME doesn't have a microseconds component.
f469625a
JB
75
76 EMACS_SET_SECS_USECS (TIME, SECS, USECS) sets both components of TIME.
77
78 EMACS_GET_TIME (TIME) stores the current system time in TIME, which
79 should be an lvalue.
f469625a
JB
80
81 EMACS_ADD_TIME (DEST, SRC1, SRC2) adds SRC1 to SRC2 and stores the
82 result in DEST. SRC should not be negative.
83
84 EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and
177c0ea7 85 stores the result in DEST. SRC should not be negative.
e0f24100 86 EMACS_TIME_NEG_P (TIME) is true if TIME is negative.
f469625a
JB
87
88*/
89
90#ifdef HAVE_TIMEVAL
91
722687f5
JB
92#define EMACS_HAS_USECS
93
f469625a
JB
94#define EMACS_TIME struct timeval
95#define EMACS_SECS(time) ((time).tv_sec + 0)
96#define EMACS_USECS(time) ((time).tv_usec + 0)
97#define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds))
7f86bdac 98#define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds))
f469625a 99
4fb83f3c 100/* On SVR4, the compiler may complain if given this extra BSD arg. */
af57e5a7 101#ifdef GETTIMEOFDAY_ONE_ARGUMENT
f9ee84a3 102#define EMACS_GET_TIME(time) gettimeofday (&(time))
af57e5a7 103#else /* not GETTIMEOFDAY_ONE_ARGUMENT */
97dfd1a1
DL
104/* Presumably the second arg is ignored. */
105#define EMACS_GET_TIME(time) gettimeofday (&(time), NULL)
af57e5a7 106#endif /* not GETTIMEOFDAY_ONE_ARGUMENT */
f469625a 107
f9ee84a3
GM
108#define EMACS_ADD_TIME(dest, src1, src2) \
109 do { \
110 (dest).tv_sec = (src1).tv_sec + (src2).tv_sec; \
111 (dest).tv_usec = (src1).tv_usec + (src2).tv_usec; \
112 if ((dest).tv_usec > 1000000) \
113 (dest).tv_usec -= 1000000, (dest).tv_sec++; \
114 } while (0)
115
116#define EMACS_SUB_TIME(dest, src1, src2) \
117 do { \
118 (dest).tv_sec = (src1).tv_sec - (src2).tv_sec; \
119 (dest).tv_usec = (src1).tv_usec - (src2).tv_usec; \
120 if ((dest).tv_usec < 0) \
121 (dest).tv_usec += 1000000, (dest).tv_sec--; \
122 } while (0)
f469625a
JB
123
124#define EMACS_TIME_NEG_P(time) \
cf4138ad 125 ((long)(time).tv_sec < 0 \
f469625a 126 || ((time).tv_sec == 0 \
cf4138ad 127 && (long)(time).tv_usec < 0))
f469625a 128
10a4cc63 129#else /* ! defined (HAVE_TIMEVAL) */
f469625a
JB
130
131#define EMACS_TIME int
132#define EMACS_SECS(time) (time)
ef15f270 133#define EMACS_USECS(time) 0
f469625a 134#define EMACS_SET_SECS(time, seconds) ((time) = (seconds))
ef15f270 135#define EMACS_SET_USECS(time, usecs) 0
f469625a
JB
136
137#define EMACS_GET_TIME(t) ((t) = time ((long *) 0))
138#define EMACS_ADD_TIME(dest, src1, src2) ((dest) = (src1) + (src2))
139#define EMACS_SUB_TIME(dest, src1, src2) ((dest) = (src1) - (src2))
140#define EMACS_TIME_NEG_P(t) ((t) < 0)
141
10a4cc63 142#endif /* ! defined (HAVE_TIMEVAL) */
f469625a
JB
143
144#define EMACS_SET_SECS_USECS(time, secs, usecs) \
145 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs))
146
c8863dae 147extern int set_file_times __P ((const char *, EMACS_TIME, EMACS_TIME));
c53a6701 148
43f15d4a
DN
149/* defined in keyboard.c */
150extern void set_waiting_for_input __P ((EMACS_TIME *));
151
fa8459a3
DN
152/* When lisp.h is not included Lisp_Object is not defined (this can
153 happen when this files is used outside the src directory).
154 Use GCPRO1 to determine if lisp.h was included. */
155#ifdef GCPRO1
156/* defined in dired.c */
157extern Lisp_Object make_time __P ((time_t));
158#endif
159
c53a6701
GM
160/* Compare times T1 and T2. Value is 0 if T1 and T2 are the same.
161 Value is < 0 if T1 is less than T2. Value is > 0 otherwise. */
162
163#define EMACS_TIME_CMP(T1, T2) \
164 (EMACS_SECS (T1) - EMACS_SECS (T2) \
165 + (EMACS_SECS (T1) == EMACS_SECS (T2) \
166 ? EMACS_USECS (T1) - EMACS_USECS (T2) \
167 : 0))
168
169/* Compare times T1 and T2 for equality, inequality etc. */
170
27a9e9b3
GM
171#define EMACS_TIME_EQ(T1, T2) (EMACS_TIME_CMP (T1, T2) == 0)
172#define EMACS_TIME_NE(T1, T2) (EMACS_TIME_CMP (T1, T2) != 0)
173#define EMACS_TIME_GT(T1, T2) (EMACS_TIME_CMP (T1, T2) > 0)
174#define EMACS_TIME_GE(T1, T2) (EMACS_TIME_CMP (T1, T2) >= 0)
175#define EMACS_TIME_LT(T1, T2) (EMACS_TIME_CMP (T1, T2) < 0)
176#define EMACS_TIME_LE(T1, T2) (EMACS_TIME_CMP (T1, T2) <= 0)
c53a6701 177
fb1b041d 178#endif /* EMACS_SYSTIME_H */
ab5796a9
MB
179
180/* arch-tag: dcb79915-cf99-4bce-9778-aade71d07651
181 (do not change this comment) */