Mercurial > emacs
annotate src/systime.h @ 5341:2f4fab6070b8
Provide bytecomp as well as byte-compile.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 25 Dec 1993 00:32:37 +0000 |
parents | a9967fc643c5 |
children | ad4092c38f51 |
rev | line source |
---|---|
979 | 1 /* systime.h - System-dependent definitions for time manipulations. |
2961 | 2 Copyright (C) 1993 Free Software Foundation, Inc. |
977 | 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 1, 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 | |
2803
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
20 #ifdef TIME_WITH_SYS_TIME |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
21 #include <sys/time.h> |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
22 #include <time.h> |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
23 #else |
ae964d7149a1
* systime.h: Borrow CPP sequence from getdate.y to include the
Jim Blandy <jimb@redhat.com>
parents:
2740
diff
changeset
|
24 #ifdef HAVE_SYS_TIME_H |
1128 | 25 #include <sys/time.h> |
26 #else | |
977 | 27 #include <time.h> |
1928
699033d79ee6
* systime.h [_AIX]: Move test outside of previous #if.
Jim Blandy <jimb@redhat.com>
parents:
1571
diff
changeset
|
28 #endif |
1112 | 29 #endif |
1128 | 30 |
3523
a9967fc643c5
[HAVE_TZNAME]: Declare tzname if not macro.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
31 #ifdef HAVE_TZNAME |
a9967fc643c5
[HAVE_TZNAME]: Declare tzname if not macro.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
32 #ifndef tzname /* For SGI. */ |
a9967fc643c5
[HAVE_TZNAME]: Declare tzname if not macro.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
33 extern char *tzname[]; /* RS6000 and others want it this way. */ |
a9967fc643c5
[HAVE_TZNAME]: Declare tzname if not macro.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
34 #endif |
a9967fc643c5
[HAVE_TZNAME]: Declare tzname if not macro.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
35 #endif |
a9967fc643c5
[HAVE_TZNAME]: Declare tzname if not macro.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
36 |
2123
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
37 /* SVr4 doesn't actually declare this in its #include files. */ |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
38 #ifdef USG5_4 |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
39 extern long timezone; |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
40 #endif |
41ea195f5ccb
* systime.h (timezone): Add an explicit declaration for this
Jim Blandy <jimb@redhat.com>
parents:
1928
diff
changeset
|
41 |
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
42 #ifdef VMS |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
43 #ifdef VAXC |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
44 #include "vmstime.h" |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
45 #endif |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
46 #endif |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2123
diff
changeset
|
47 |
979 | 48 |
977 | 49 /* EMACS_TIME is the type to use to represent temporal intervals - |
50 struct timeval on some systems, int on others. It can be passed as | |
2550 | 51 the timeout argument to the select system call. |
977 | 52 |
53 EMACS_SECS (TIME) is an rvalue for the seconds component of TIME. | |
54 EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS. | |
55 | |
56 EMACS_HAS_USECS is defined iff EMACS_TIME has a usecs component. | |
2657 | 57 EMACS_USECS (TIME) is an rvalue for the microseconds component of TIME. |
58 This returns zero if EMACS_TIME doesn't have a microseconds component. | |
59 EMACS_SET_USECS (TIME, MICROSECONDS) sets that to MICROSECONDS. | |
60 This does nothing if EMACS_TIME doesn't have a microseconds component. | |
977 | 61 |
62 EMACS_SET_SECS_USECS (TIME, SECS, USECS) sets both components of TIME. | |
63 | |
64 EMACS_GET_TIME (TIME) stores the current system time in TIME, which | |
65 should be an lvalue. | |
66 EMACS_SET_UTIMES (PATH, ATIME, MTIME) changes the last-access and | |
67 last-modification times of the file named PATH to ATIME and | |
68 MTIME, which are EMACS_TIMEs. | |
69 | |
70 EMACS_ADD_TIME (DEST, SRC1, SRC2) adds SRC1 to SRC2 and stores the | |
71 result in DEST. SRC should not be negative. | |
72 | |
73 EMACS_SUB_TIME (DEST, SRC1, SRC2) subtracts SRC2 from SRC1 and | |
74 stores the result in DEST. SRC should not be negative. | |
75 EMACS_TIME_NEG_P (TIME) is true iff TIME is negative. | |
76 | |
77 */ | |
78 | |
79 #ifdef HAVE_TIMEVAL | |
80 | |
2289
8317265b21dc
* systime.h (EMACS_HAS_USECS): #define this if HAVE_TIMEVAL is
Jim Blandy <jimb@redhat.com>
parents:
2264
diff
changeset
|
81 #define EMACS_HAS_USECS |
8317265b21dc
* systime.h (EMACS_HAS_USECS): #define this if HAVE_TIMEVAL is
Jim Blandy <jimb@redhat.com>
parents:
2264
diff
changeset
|
82 |
977 | 83 #define EMACS_TIME struct timeval |
84 #define EMACS_SECS(time) ((time).tv_sec + 0) | |
85 #define EMACS_USECS(time) ((time).tv_usec + 0) | |
86 #define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds)) | |
2657 | 87 #define EMACS_SET_USECS(time, microseconds) ((time).tv_usec = (microseconds)) |
977 | 88 |
89 #define EMACS_GET_TIME(time) \ | |
90 { \ | |
978 | 91 struct timezone dummy; \ |
977 | 92 gettimeofday (&(time), &dummy); \ |
93 } | |
94 | |
95 #define EMACS_ADD_TIME(dest, src1, src2) \ | |
96 { \ | |
97 (dest).tv_sec = (src1).tv_sec + (src2).tv_sec; \ | |
98 (dest).tv_usec = (src1).tv_usec + (src2).tv_usec; \ | |
99 if ((dest).tv_usec > 1000000) \ | |
100 (dest).tv_usec -= 1000000, (dest).tv_sec++; \ | |
101 } | |
102 | |
103 #define EMACS_SUB_TIME(dest, src1, src2) \ | |
104 { \ | |
105 (dest).tv_sec = (src1).tv_sec - (src2).tv_sec; \ | |
106 (dest).tv_usec = (src1).tv_usec - (src2).tv_usec; \ | |
107 if ((dest).tv_usec < 0) \ | |
108 (dest).tv_usec += 1000000, (dest).tv_sec--; \ | |
109 } | |
110 | |
111 #define EMACS_TIME_NEG_P(time) \ | |
112 ((time).tv_sec < 0 \ | |
113 || ((time).tv_sec == 0 \ | |
114 && (time).tv_usec < 0)) | |
115 | |
979 | 116 #else /* ! defined (HAVE_TIMEVAL) */ |
977 | 117 |
118 #define EMACS_TIME int | |
119 #define EMACS_SECS(time) (time) | |
999 | 120 #define EMACS_USECS(time) 0 |
977 | 121 #define EMACS_SET_SECS(time, seconds) ((time) = (seconds)) |
999 | 122 #define EMACS_SET_USECS(time, usecs) 0 |
977 | 123 |
124 #define EMACS_GET_TIME(t) ((t) = time ((long *) 0)) | |
125 #define EMACS_ADD_TIME(dest, src1, src2) ((dest) = (src1) + (src2)) | |
126 #define EMACS_SUB_TIME(dest, src1, src2) ((dest) = (src1) - (src2)) | |
127 #define EMACS_TIME_NEG_P(t) ((t) < 0) | |
128 | |
979 | 129 #endif /* ! defined (HAVE_TIMEVAL) */ |
977 | 130 |
131 #define EMACS_SET_SECS_USECS(time, secs, usecs) \ | |
132 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs)) | |
133 | |
134 #ifdef USE_UTIME | |
135 | |
136 #define EMACS_SET_UTIMES(path, atime, mtime) \ | |
137 { \ | |
999 | 138 time_t tv[2]; \ |
977 | 139 tv[0] = EMACS_SECS (atime); \ |
140 tv[1] = EMACS_SECS (mtime); \ | |
141 utime ((path), tv); \ | |
142 } | |
143 | |
979 | 144 #else /* ! defined (USE_UTIME) */ |
977 | 145 |
146 #define EMACS_SET_UTIMES(path, atime, mtime) \ | |
147 { \ | |
148 EMACS_TIME tv[2]; \ | |
149 tv[0] = atime; \ | |
150 tv[1] = mtime; \ | |
151 utimes ((path), tv); \ | |
152 } | |
153 | |
979 | 154 #endif /* ! defined (USE_UTIME) */ |