annotate src/systime.h @ 410:de805c49cfc1 r21-2-35

Import from CVS: tag r21-2-35
author cvs
date Mon, 13 Aug 2007 11:19:21 +0200
parents 74fd4e045ea6
children 697ef44129c6
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
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
27 # include <sys/time.h>
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
28 # include <time.h>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #else
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
30 # ifdef HAVE_SYS_TIME_H
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
31 # include <sys/time.h>
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
32 # else
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
33 # include <time.h>
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
34 # endif
0
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
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
44 #ifdef WIN32_NATIVE
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
45
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
46 /* This defines struct timeval */
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
47 #include <winsock.h>
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
48
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
49 struct timezone
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
50 {
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
51 int tz_minuteswest; /* minutes west of Greenwich */
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
52 int tz_dsttime; /* type of dst correction */
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
53 };
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
54
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
55 #ifdef HAVE_X_WINDOWS
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
56 /* Provides gettimeofday etc */
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
57 #include <X11/Xw32defs.h>
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
58 #include <X11/Xos.h>
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
59 #else
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
60 /* X11R6 on NT provides the single parameter version of this command */
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
61 void gettimeofday (struct timeval *, struct timezone *);
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
62 #endif /* HAVE_X_WINDOWS */
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
63
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
64 #endif /* WIN32_NATIVE */
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
65
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #ifdef HAVE_UTIME_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 # include <utime.h>
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
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
70 #if defined(HAVE_TZNAME) && !defined(WIN32_NATIVE) && !defined(CYGWIN)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 #ifndef tzname /* For SGI. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 extern char *tzname[]; /* RS6000 and others want it this way. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 /* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 disagree about the name of the guard symbol. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #ifdef HPUX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #ifdef _STRUCT_TIMEVAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #ifndef __TIMEVAL__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #define __TIMEVAL__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 /* EMACS_TIME is the type to use to represent temporal intervals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 At one point this was 'struct timeval' on some systems, int on others.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 But this is stupid. Other things than select() code like to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 manipulate time values, and so microsecond precision should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 maintained. Separate typedefs and conversion functions are provided
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 for select().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 EMACS_SECS (TIME) is an rvalue for the seconds component of TIME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS.
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_USECS (TIME) is an rvalue for the microseconds component of TIME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Note that all times are returned in "normalized" format (i.e. the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 usecs value is in the range 0 <= value < 1000000) and are assumed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 to be passed in in this format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 EMACS_SET_SECS_USECS (TIME, SECS, USECS) sets both components of TIME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 EMACS_GET_TIME (TIME) stores the current system time in TIME, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 should be an lvalue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 set_file_times (PATH, ATIME, MTIME) changes the last-access and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 last-modification times of the file named PATH to ATIME and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 MTIME, which are EMACS_TIMEs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 EMACS_NORMALIZE_TIME (TIME) coerces TIME into normalized format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 EMACS_ADD_TIME (DEST, SRC1, SRC2) adds SRC1 to SRC2 and stores the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 result in DEST. Either or both may be negative.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 stores the result in DEST. Either or both may be negative.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 EMACS_TIME_NEG_P (TIME) is true iff TIME is negative.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 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
123 EMACS_TIME_GREATER (TIME1, TIME2) is true iff TIME1 is greater than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 TIME2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 EMACS_TIME_EQUAL_OR_GREATER (TIME1, TIME2) is true iff TIME1 is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 greater than or equal to TIME2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 #ifdef HAVE_TIMEVAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #define EMACS_SELECT_TIME struct timeval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 #define EMACS_TIME_TO_SELECT_TIME(time, select_time) ((select_time) = (time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 #else /* not HAVE_TIMEVAL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 struct timeval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 long tv_sec; /* seconds */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 long tv_usec; /* microseconds */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 };
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_SELECT_TIME int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 #define EMACS_TIME_TO_SELECT_TIME(time, select_time) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 EMACS_TIME_TO_INT (time, select_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 #endif /* not HAVE_TIMEVAL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #define EMACS_TIME_TO_INT(time, intvar) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 EMACS_TIME tmptime = time; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 if (tmptime.tv_usec > 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (intvar) = tmptime.tv_sec + 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (intvar) = tmptime.tv_sec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #define EMACS_TIME struct timeval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #define EMACS_SECS(time) ((time).tv_sec + 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #define EMACS_USECS(time) ((time).tv_usec + 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #if !defined (HAVE_GETTIMEOFDAY)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
166 int gettimeofday (struct timeval *, void *);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 /* On SVR4, the compiler may complain if given this extra BSD arg. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #ifdef GETTIMEOFDAY_ONE_ARGUMENT
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
171 #define EMACS_GETTIMEOFDAY(time) gettimeofday(time)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
172 #else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
173 #define EMACS_GETTIMEOFDAY(time) gettimeofday(time,0)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
174 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
175
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 /* According to the Xt sources, some NTP daemons on some systems may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 return non-normalized values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #define EMACS_GET_TIME(time) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 do { \
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
180 EMACS_GETTIMEOFDAY (&(time)); \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 EMACS_NORMALIZE_TIME (time); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #define EMACS_NORMALIZE_TIME(time) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 while ((time).tv_usec >= 1000000) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (time).tv_usec -= 1000000; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (time).tv_sec++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 while ((time).tv_usec < 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (time).tv_usec += 1000000; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (time).tv_sec--; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 } while (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_ADD_TIME(dest, src1, src2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (dest).tv_sec = (src1).tv_sec + (src2).tv_sec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (dest).tv_usec = (src1).tv_usec + (src2).tv_usec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 EMACS_NORMALIZE_TIME (dest); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 #define EMACS_SUB_TIME(dest, src1, src2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (dest).tv_sec = (src1).tv_sec - (src2).tv_sec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (dest).tv_usec = (src1).tv_usec - (src2).tv_usec; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 EMACS_NORMALIZE_TIME (dest); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 } while (0)
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_TIME_NEG_P(time) ((long)(time).tv_sec < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #define EMACS_TIME_EQUAL(time1, time2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 ((time1).tv_sec == (time2).tv_sec && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (time1).tv_usec == (time2).tv_usec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #define EMACS_TIME_GREATER(time1, time2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 ((time1).tv_sec > (time2).tv_sec || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 ((time1).tv_sec == (time2).tv_sec && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (time1).tv_usec > (time2).tv_usec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 #define EMACS_TIME_EQUAL_OR_GREATER(time1, time2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 ((time1).tv_sec > (time2).tv_sec || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 ((time1).tv_sec == (time2).tv_sec && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (time1).tv_usec >= (time2).tv_usec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #define EMACS_SET_SECS_USECS(time, secs, usecs) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
231 int set_file_times (char *filename, EMACS_TIME atime, EMACS_TIME mtime);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
233 void get_process_times (double *user_time, double *system_time,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
234 double *real_time);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
236 #if defined(WIN32_NATIVE) || defined(BROKEN_CYGWIN)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
237
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
238 /* setitimer emulation for Win32 (see nt.c) */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
239
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
240 struct itimerval
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
241 {
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
242 struct timeval it_value;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
243 struct timeval it_interval;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
244 };
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
245
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
246 int setitimer (int kind, const struct itimerval* itnew,
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
247 struct itimerval* itold);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
248
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
249 #define ITIMER_REAL 1
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
250 #define ITIMER_PROF 2
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
251
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 398
diff changeset
252 #endif /* WIN32_NATIVE */
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 213
diff changeset
253
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
254 #endif /* INCLUDED_systime_h_ */