blob: 3947477630f172b637c7083cd5c392226e858edd (
plain)
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
|
#ifndef RUBY_TIMEV_H
#define RUBY_TIMEV_H
PACKED_STRUCT_UNALIGNED(struct vtm {
VALUE year;
VALUE subsecx;
VALUE utc_offset;
const char *zone;
uint16_t yday:9;
uint8_t mon:4;
uint8_t mday:5;
uint8_t hour:5;
uint8_t min:6;
uint8_t sec:6;
uint8_t wday:3;
uint8_t isdst:2;
});
#define TIME_SCALE 1000000000
#ifndef TYPEOF_TIMEVAL_TV_SEC
# define TYPEOF_TIMEVAL_TV_SEC time_t
#endif
#ifndef TYPEOF_TIMEVAL_TV_USEC
# if INT_MAX >= 1000000
# define TYPEOF_TIMEVAL_TV_USEC int
# else
# define TYPEOF_TIMEVAL_TV_USEC long
# endif
#endif
#if SIZEOF_TIME_T == SIZEOF_LONG
typedef unsigned long unsigned_time_t;
#elif SIZEOF_TIME_T == SIZEOF_INT
typedef unsigned int unsigned_time_t;
#elif SIZEOF_TIME_T == SIZEOF_LONG_LONG
typedef unsigned LONG_LONG unsigned_time_t;
#else
# error cannot find integer type which size is same as time_t.
#endif
#endif
|