blob: 36fb2ef13cff5473814aedbbffabaddc3bf5b41f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_TIME_H
2#define _LINUX_TIME_H
3
4#include <linux/types.h>
5
6#ifdef __KERNEL__
7#include <linux/seqlock.h>
8#endif
9
10#ifndef _STRUCT_TIMESPEC
11#define _STRUCT_TIMESPEC
12struct timespec {
13 time_t tv_sec; /* seconds */
14 long tv_nsec; /* nanoseconds */
15};
16#endif /* _STRUCT_TIMESPEC */
17
18struct timeval {
19 time_t tv_sec; /* seconds */
20 suseconds_t tv_usec; /* microseconds */
21};
22
23struct timezone {
24 int tz_minuteswest; /* minutes west of Greenwich */
25 int tz_dsttime; /* type of dst correction */
26};
27
28#ifdef __KERNEL__
29
30/* Parameters used to convert the timespec values */
Nishanth Aravamudan84f902c2005-09-10 00:27:22 -070031#define MSEC_PER_SEC (1000L)
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#ifndef USEC_PER_SEC
34#define USEC_PER_SEC (1000000L)
35#endif
36
37#ifndef NSEC_PER_SEC
38#define NSEC_PER_SEC (1000000000L)
39#endif
40
41#ifndef NSEC_PER_USEC
42#define NSEC_PER_USEC (1000L)
43#endif
44
45static __inline__ int timespec_equal(struct timespec *a, struct timespec *b)
46{
47 return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec);
48}
49
50/* Converts Gregorian date to seconds since 1970-01-01 00:00:00.
51 * Assumes input in normal date format, i.e. 1980-12-31 23:59:59
52 * => year=1980, mon=12, day=31, hour=23, min=59, sec=59.
53 *
54 * [For the Julian calendar (which was used in Russia before 1917,
55 * Britain & colonies before 1752, anywhere else before 1582,
56 * and is still in use by some communities) leave out the
57 * -year/100+year/400 terms, and add 10.]
58 *
59 * This algorithm was first published by Gauss (I think).
60 *
61 * WARNING: this function will overflow on 2106-02-07 06:28:16 on
62 * machines were long is 32-bit! (However, as time_t is signed, we
63 * will already get problems at other places on 2038-01-19 03:14:08)
64 */
65static inline unsigned long
66mktime (unsigned int year, unsigned int mon,
67 unsigned int day, unsigned int hour,
68 unsigned int min, unsigned int sec)
69{
70 if (0 >= (int) (mon -= 2)) { /* 1..12 -> 11,12,1..10 */
71 mon += 12; /* Puts Feb last since it has leap day */
72 year -= 1;
73 }
74
75 return (((
76 (unsigned long) (year/4 - year/100 + year/400 + 367*mon/12 + day) +
77 year*365 - 719499
78 )*24 + hour /* now have hours */
79 )*60 + min /* now have minutes */
80 )*60 + sec; /* finally seconds */
81}
82
83extern struct timespec xtime;
84extern struct timespec wall_to_monotonic;
85extern seqlock_t xtime_lock;
86
87static inline unsigned long get_seconds(void)
88{
89 return xtime.tv_sec;
90}
91
92struct timespec current_kernel_time(void);
93
94#define CURRENT_TIME (current_kernel_time())
95#define CURRENT_TIME_SEC ((struct timespec) { xtime.tv_sec, 0 })
96
97extern void do_gettimeofday(struct timeval *tv);
98extern int do_settimeofday(struct timespec *tv);
99extern int do_sys_settimeofday(struct timespec *tv, struct timezone *tz);
100extern void clock_was_set(void); // call when ever the clock is set
101extern int do_posix_clock_monotonic_gettime(struct timespec *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102extern long do_utimes(char __user * filename, struct timeval * times);
103struct itimerval;
104extern int do_setitimer(int which, struct itimerval *value, struct itimerval *ovalue);
105extern int do_getitimer(int which, struct itimerval *value);
106extern void getnstimeofday (struct timespec *tv);
107
108extern struct timespec timespec_trunc(struct timespec t, unsigned gran);
109
110static inline void
111set_normalized_timespec (struct timespec *ts, time_t sec, long nsec)
112{
113 while (nsec > NSEC_PER_SEC) {
114 nsec -= NSEC_PER_SEC;
115 ++sec;
116 }
117 while (nsec < 0) {
118 nsec += NSEC_PER_SEC;
119 --sec;
120 }
121 ts->tv_sec = sec;
122 ts->tv_nsec = nsec;
123}
124
125#endif /* __KERNEL__ */
126
127#define NFDBITS __NFDBITS
128
129#define FD_SETSIZE __FD_SETSIZE
130#define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp)
131#define FD_CLR(fd,fdsetp) __FD_CLR(fd,fdsetp)
132#define FD_ISSET(fd,fdsetp) __FD_ISSET(fd,fdsetp)
133#define FD_ZERO(fdsetp) __FD_ZERO(fdsetp)
134
135/*
136 * Names of the interval timers, and structure
137 * defining a timer setting.
138 */
139#define ITIMER_REAL 0
140#define ITIMER_VIRTUAL 1
141#define ITIMER_PROF 2
142
143struct itimerspec {
144 struct timespec it_interval; /* timer period */
145 struct timespec it_value; /* timer expiration */
146};
147
148struct itimerval {
149 struct timeval it_interval; /* timer interval */
150 struct timeval it_value; /* current value */
151};
152
153
154/*
155 * The IDs of the various system clocks (for POSIX.1b interval timers).
156 */
157#define CLOCK_REALTIME 0
158#define CLOCK_MONOTONIC 1
159#define CLOCK_PROCESS_CPUTIME_ID 2
160#define CLOCK_THREAD_CPUTIME_ID 3
161#define CLOCK_REALTIME_HR 4
162#define CLOCK_MONOTONIC_HR 5
163
164/*
165 * The IDs of various hardware clocks
166 */
167
168
169#define CLOCK_SGI_CYCLE 10
170#define MAX_CLOCKS 16
171#define CLOCKS_MASK (CLOCK_REALTIME | CLOCK_MONOTONIC | \
172 CLOCK_REALTIME_HR | CLOCK_MONOTONIC_HR)
173#define CLOCKS_MONO (CLOCK_MONOTONIC & CLOCK_MONOTONIC_HR)
174
175/*
176 * The various flags for setting POSIX.1b interval timers.
177 */
178
179#define TIMER_ABSTIME 0x01
180
181
182#endif