annotate src/systime.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 6719134a07c2
children de805c49cfc1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* systime.h - System-dependent definitions for time manipulations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
23 #ifndef INCLUDED_systime_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
24 #define INCLUDED_systime_h_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #ifdef TIME_WITH_SYS_TIME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include <sys/time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include <time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #ifdef HAVE_SYS_TIME_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <sys/time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include <time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 371
diff changeset
37 /* select() is supposed to be (Unix98) defined in sys/time.h,
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 371
diff changeset
38 but FreeBSD and Irix 5 put it in unistd.h instead.
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 371
diff changeset
39 If we have it, including it can't hurt. */
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 371
diff changeset
40 #ifdef HAVE_UNISTD_H
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 371
diff changeset
41 #include <unistd.h>
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 371
diff changeset
42 #endif
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 371
diff changeset
43
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
44 #if defined(WINDOWSNT) && defined(HAVE_X_WINDOWS)
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
45 /* Provides gettimeofday etc */
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
46 #include <X11/Xw32defs.h>
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
47 #include <X11/Xos.h>
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
48 #endif
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
49
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #ifdef HAVE_UTIME_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 # include <utime.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
54 #if defined(HAVE_TZNAME) && !defined(WINDOWSNT) && !defined(__CYGWIN32__)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #ifndef tzname /* For SGI. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 extern char *tzname[]; /* RS6000 and others want it this way. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 /* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 disagree about the name of the guard symbol. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #ifdef HPUX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 #ifdef _STRUCT_TIMEVAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #ifndef __TIMEVAL__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 #define __TIMEVAL__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 /* EMACS_TIME is the type to use to represent temporal intervals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 At one point this was 'struct timeval' on some systems, int on others.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 But this is stupid. Other things than select() code like to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 manipulate time values, and so microsecond precision should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 maintained. Separate typedefs and conversion functions are provided
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 for select().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 EMACS_SECS (TIME) is an rvalue for the seconds component of TIME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Note that all times are returned in "normalized" format (i.e. the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 usecs value is in the range 0 <= value < 1000000) and are assumed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 to be passed in in this format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 EMACS_SET_SECS_USECS (TIME, SECS, USECS) sets both components of TIME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 EMACS_GET_TIME (TIME) stores the current system time in TIME, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 should be an lvalue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 set_file_times (PATH, ATIME, MTIME) changes the last-access and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 last-modification times of the file named PATH to ATIME and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 MTIME, which are EMACS_TIMEs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 EMACS_NORMALIZE_TIME (TIME) coerces TIME into normalized format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 EMACS_ADD_TIME (DEST, SRC1, SRC2) adds SRC1 to SRC2 and stores the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 result in DEST. Either or both may be negative.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 stores the result in DEST. Either or both may be negative.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 EMACS_TIME_NEG_P (TIME) is true iff TIME is negative.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 EMACS_TIME_EQUAL (TIME1, TIME2) is true iff TIME1 is the same as TIME2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 EMACS_TIME_GREATER (TIME1, TIME2) is true iff TIME1 is greater than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 TIME2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 EMACS_TIME_EQUAL_OR_GREATER (TIME1, TIME2) is true iff TIME1 is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 greater than or equal to TIME2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #ifdef HAVE_TIMEVAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #define EMACS_SELECT_TIME struct timeval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #define EMACS_TIME_TO_SELECT_TIME(time, select_time) ((select_time) = (time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 #else /* not HAVE_TIMEVAL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 struct timeval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 long tv_sec; /* seconds */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 long tv_usec; /* microseconds */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #define EMACS_SELECT_TIME int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 #define EMACS_TIME_TO_SELECT_TIME(time, select_time) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 EMACS_TIME_TO_INT (time, select_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 #endif /* not HAVE_TIMEVAL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 #define EMACS_TIME_TO_INT(time, intvar) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 EMACS_TIME tmptime = time; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 if (tmptime.tv_usec > 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (intvar) = tmptime.tv_sec + 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (intvar) = tmptime.tv_sec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 #define EMACS_TIME struct timeval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 #define EMACS_SECS(time) ((time).tv_sec + 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 #define EMACS_USECS(time) ((time).tv_usec + 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 #define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #if !defined (HAVE_GETTIMEOFDAY)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
150 int gettimeofday (struct timeval *, void *);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 /* On SVR4, the compiler may complain if given this extra BSD arg. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 #ifdef GETTIMEOFDAY_ONE_ARGUMENT
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
155 #define EMACS_GETTIMEOFDAY(time) gettimeofday(time)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
156 #else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
157 #define EMACS_GETTIMEOFDAY(time) gettimeofday(time,0)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
158 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
159
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 /* According to the Xt sources, some NTP daemons on some systems may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 return non-normalized values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #define EMACS_GET_TIME(time) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 do { \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
164 EMACS_GETTIMEOFDAY (&(time)); \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 EMACS_NORMALIZE_TIME (time); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #define EMACS_NORMALIZE_TIME(time) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 while ((time).tv_usec >= 1000000) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (time).tv_usec -= 1000000; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (time).tv_sec++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 while ((time).tv_usec < 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (time).tv_usec += 1000000; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (time).tv_sec--; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #define EMACS_ADD_TIME(dest, src1, src2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (dest).tv_sec = (src1).tv_sec + (src2).tv_sec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (dest).tv_usec = (src1).tv_usec + (src2).tv_usec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 EMACS_NORMALIZE_TIME (dest); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 #define EMACS_SUB_TIME(dest, src1, src2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (dest).tv_sec = (src1).tv_sec - (src2).tv_sec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (dest).tv_usec = (src1).tv_usec - (src2).tv_usec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 EMACS_NORMALIZE_TIME (dest); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 #define EMACS_TIME_NEG_P(time) ((long)(time).tv_sec < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 #define EMACS_TIME_EQUAL(time1, time2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 ((time1).tv_sec == (time2).tv_sec && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (time1).tv_usec == (time2).tv_usec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 #define EMACS_TIME_GREATER(time1, time2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 ((time1).tv_sec > (time2).tv_sec || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 ((time1).tv_sec == (time2).tv_sec && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (time1).tv_usec > (time2).tv_usec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #define EMACS_TIME_EQUAL_OR_GREATER(time1, time2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ((time1).tv_sec > (time2).tv_sec || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 ((time1).tv_sec == (time2).tv_sec && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (time1).tv_usec >= (time2).tv_usec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #define EMACS_SET_SECS_USECS(time, secs, usecs) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
215 int set_file_times (char *filename, EMACS_TIME atime, EMACS_TIME mtime);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
217 void get_process_times (double *user_time, double *system_time,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
218 double *real_time);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
220 #if defined(WINDOWSNT) || defined(BROKEN_CYGWIN) || defined(__MINGW32__)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
221
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
222 /* setitimer emulation for Win32 (see nt.c) */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
224 struct itimerval
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
225 {
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
226 struct timeval it_value;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
227 struct timeval it_interval;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
228 };
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
229
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
230 int setitimer (int kind, const struct itimerval* itnew,
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
231 struct itimerval* itold);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
232
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
233 #define ITIMER_REAL 1
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
234 #define ITIMER_PROF 2
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
235
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
236 #endif /* WINDOWSNT */
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
237
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
238 #endif /* INCLUDED_systime_h_ */