]> code.delx.au - gnu-emacs/blob - src/systime.h
Update GPL to version 2.
[gnu-emacs] / src / systime.h
1 /* systime.h - System-dependent definitions for time manipulations.
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #ifdef TIME_WITH_SYS_TIME
21 #include <sys/time.h>
22 #include <time.h>
23 #else
24 #ifdef HAVE_SYS_TIME_H
25 #include <sys/time.h>
26 #else
27 #include <time.h>
28 #endif
29 #endif
30
31 #ifdef HAVE_TZNAME
32 #ifndef tzname /* For SGI. */
33 extern char *tzname[]; /* RS6000 and others want it this way. */
34 #endif
35 #endif
36
37 /* SVr4 doesn't actually declare this in its #include files. */
38 #ifdef USG5_4
39 extern long timezone;
40 #endif
41
42 #ifdef VMS
43 #ifdef VAXC
44 #include "vmstime.h"
45 #endif
46 #endif
47
48 /* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h
49 disagree about the name of the guard symbol. */
50 #ifdef HPUX
51 #ifdef _STRUCT_TIMEVAL
52 #ifndef __TIMEVAL__
53 #define __TIMEVAL__
54 #endif
55 #endif
56 #endif
57 \f
58 /* EMACS_TIME is the type to use to represent temporal intervals -
59 struct timeval on some systems, int on others. It can be passed as
60 the timeout argument to the select system call.
61
62 EMACS_SECS (TIME) is an rvalue for the seconds component of TIME.
63 EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS.
64
65 EMACS_HAS_USECS is defined iff EMACS_TIME has a usecs component.
66 EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME.
67 This returns zero if EMACS_TIME doesn't have a microseconds component.
68 EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS.
69 This does nothing if EMACS_TIME doesn't have a microseconds component.
70
71 EMACS_SET_SECS_USECS (TIME, SECS, USECS) sets both components of TIME.
72
73 EMACS_GET_TIME (TIME) stores the current system time in TIME, which
74 should be an lvalue.
75
76 EMACS_ADD_TIME (DEST, SRC1, SRC2) adds SRC1 to SRC2 and stores the
77 result in DEST. SRC should not be negative.
78
79 EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and
80 stores the result in DEST. SRC should not be negative.
81 EMACS_TIME_NEG_P (TIME) is true iff TIME is negative.
82
83 */
84
85 #ifdef HAVE_TIMEVAL
86
87 #define EMACS_HAS_USECS
88
89 #define EMACS_TIME struct timeval
90 #define EMACS_SECS(time) ((time).tv_sec + 0)
91 #define EMACS_USECS(time) ((time).tv_usec + 0)
92 #define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds))
93 #define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds))
94
95 /* On SVR4, the compiler may complain if given this extra BSD arg. */
96 #ifdef GETTIMEOFDAY_ONE_ARGUMENT
97 #define EMACS_GET_TIME(time) \
98 { \
99 gettimeofday (&(time)); \
100 }
101 #else /* not GETTIMEOFDAY_ONE_ARGUMENT */
102 #define EMACS_GET_TIME(time) \
103 { \
104 struct timezone dummy; \
105 gettimeofday (&(time), &dummy); \
106 }
107 #endif /* not GETTIMEOFDAY_ONE_ARGUMENT */
108
109 #define EMACS_ADD_TIME(dest, src1, src2) \
110 { \
111 (dest).tv_sec = (src1).tv_sec + (src2).tv_sec; \
112 (dest).tv_usec = (src1).tv_usec + (src2).tv_usec; \
113 if ((dest).tv_usec > 1000000) \
114 (dest).tv_usec -= 1000000, (dest).tv_sec++; \
115 }
116
117 #define EMACS_SUB_TIME(dest, src1, src2) \
118 { \
119 (dest).tv_sec = (src1).tv_sec - (src2).tv_sec; \
120 (dest).tv_usec = (src1).tv_usec - (src2).tv_usec; \
121 if ((dest).tv_usec < 0) \
122 (dest).tv_usec += 1000000, (dest).tv_sec--; \
123 }
124
125 #define EMACS_TIME_NEG_P(time) \
126 ((long)(time).tv_sec < 0 \
127 || ((time).tv_sec == 0 \
128 && (long)(time).tv_usec < 0))
129
130 #else /* ! defined (HAVE_TIMEVAL) */
131
132 #define EMACS_TIME int
133 #define EMACS_SECS(time) (time)
134 #define EMACS_USECS(time) 0
135 #define EMACS_SET_SECS(time, seconds) ((time) = (seconds))
136 #define EMACS_SET_USECS(time, usecs) 0
137
138 #define EMACS_GET_TIME(t) ((t) = time ((long *) 0))
139 #define EMACS_ADD_TIME(dest, src1, src2) ((dest) = (src1) + (src2))
140 #define EMACS_SUB_TIME(dest, src1, src2) ((dest) = (src1) - (src2))
141 #define EMACS_TIME_NEG_P(t) ((t) < 0)
142
143 #endif /* ! defined (HAVE_TIMEVAL) */
144
145 #define EMACS_SET_SECS_USECS(time, secs, usecs) \
146 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs))
147
148 extern int set_file_times ();