My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef TIME64_CONFIG_H
# define TIME64_CONFIG_H

/* Configuration
-------------
Define as appropriate for your system.
Sensible defaults provided.
*/

/* Debugging
TIME_64_DEBUG
Define if you want debugging messages
*/
/* #define TIME_64_DEBUG */


/* INT_64_T
A 64 bit integer type to use to store time and others.
Must be defined.
*/
#define INT_64_T long long


/* USE_TM64
Should we use a 64 bit safe replacement for tm? This will
let you go past year 2 billion but the struct will be incompatible
with tm. Conversion functions will be provided.
*/
/* #define USE_TM64 */


/* Availability of system functions.

HAS_GMTIME_R
Define if your system has gmtime_r()

HAS_LOCALTIME_R
Define if your system has localtime_r()

HAS_TIMEGM
Define if your system has timegm(), a GNU extension.
*/
#define HAS_GMTIME_R
#define HAS_LOCALTIME_R
/*#define HAS_TIMEGM */


/* Details of non-standard tm struct elements.

HAS_TM_TM_GMTOFF
True if your tm struct has a "tm_gmtoff" element.
A BSD extension.

HAS_TM_TM_ZONE
True if your tm struct has a "tm_zone" element.
A BSD extension.
*/
/* #define HAS_TM_TM_GMTOFF */
/* #define HAS_TM_TM_ZONE */


/* USE_SYSTEM_LOCALTIME
USE_SYSTEM_GMTIME
Should we use the system functions if the time is inside their range?
Your system localtime() is probably more accurate, but our gmtime() is
fast and safe.
*/
#define USE_SYSTEM_LOCALTIME
/* #define USE_SYSTEM_GMTIME */


/* SYSTEM_LOCALTIME_MAX
SYSTEM_LOCALTIME_MIN
SYSTEM_GMTIME_MAX
SYSTEM_GMTIME_MIN
Maximum and minimum values your system's gmtime() and localtime()
can handle. We will use your system functions if the time falls
inside these ranges.
*/
#define SYSTEM_LOCALTIME_MAX 2147483647
#define SYSTEM_LOCALTIME_MIN -2147483647
#define SYSTEM_GMTIME_MAX 2147483647
#define SYSTEM_GMTIME_MIN -2147483647

#endif /* TIME64_CONFIG_H */

Change log

r102 by schwern on Oct 7, 2008   Diff
Eliminate multi-var macros, that's C99

Trailing code on an #endif
Go to: 
Sign in to write a code review

Older revisions

r94 by schwern on Oct 4, 2008   Diff
Add some trace code to help with
debugging.

localtime64_r() assumed that 1901-2037
is safe.  This isn't portable, in
...
r92 by schwern on Oct 4, 2008   Diff
Move user configuration stuff into a
new file.

Change all the HAS_* or SHOULD_*
defines to be defined == true, undef
...
All revisions of this file

File info

Size: 1965 bytes, 85 lines
Powered by Google Project Hosting