2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
13 #include "user_util.h"
14 #include "kern_util.h"
17 #include "signal_user.h"
18 #include "time_user.h"
19 #include "kern_constants.h"
21 /* XXX This really needs to be declared and initialized in a kernel file since
22 * it's in <linux/time.h>
24 extern struct timespec wall_to_monotonic
;
26 extern struct timeval xtime
;
28 struct timeval local_offset
= { 0, 0 };
32 gettimeofday(&xtime
, NULL
);
33 timeradd(&xtime
, &local_offset
, &xtime
);
36 static void set_interval(int timer_type
)
38 int usec
= 1000000/hz();
39 struct itimerval interval
= ((struct itimerval
) { { 0, usec
},
42 if(setitimer(timer_type
, &interval
, NULL
) == -1)
43 panic("setitimer failed - errno = %d\n", errno
);
46 void enable_timer(void)
48 set_interval(ITIMER_VIRTUAL
);
51 void prepare_timer(void * ptr
)
53 int usec
= 1000000/hz();
54 *(struct itimerval
*)ptr
= ((struct itimerval
) { { 0, usec
},
58 void disable_timer(void)
60 struct itimerval disable
= ((struct itimerval
) { { 0, 0 }, { 0, 0 }});
61 if((setitimer(ITIMER_VIRTUAL
, &disable
, NULL
) < 0) ||
62 (setitimer(ITIMER_REAL
, &disable
, NULL
) < 0))
63 printk("disnable_timer - setitimer failed, errno = %d\n",
65 /* If there are signals already queued, after unblocking ignore them */
66 set_handler(SIGALRM
, SIG_IGN
, 0, -1);
67 set_handler(SIGVTALRM
, SIG_IGN
, 0, -1);
70 void switch_timers(int to_real
)
72 struct itimerval disable
= ((struct itimerval
) { { 0, 0 }, { 0, 0 }});
73 struct itimerval enable
= ((struct itimerval
) { { 0, 1000000/hz() },
74 { 0, 1000000/hz() }});
86 if((setitimer(old
, &disable
, NULL
) < 0) ||
87 (setitimer(new, &enable
, NULL
)))
88 printk("switch_timers - setitimer failed, errno = %d\n",
92 void uml_idle_timer(void)
94 if(signal(SIGVTALRM
, SIG_IGN
) == SIG_ERR
)
95 panic("Couldn't unset SIGVTALRM handler");
97 set_handler(SIGALRM
, (__sighandler_t
) alarm_handler
,
98 SA_RESTART
, SIGUSR1
, SIGIO
, SIGWINCH
, SIGVTALRM
, -1);
99 set_interval(ITIMER_REAL
);
102 extern int do_posix_clock_monotonic_gettime(struct timespec
*tp
);
108 if(signal(SIGVTALRM
, boot_timer_handler
) == SIG_ERR
)
109 panic("Couldn't set SIGVTALRM handler");
110 set_interval(ITIMER_VIRTUAL
);
112 do_posix_clock_monotonic_gettime(&now
);
113 wall_to_monotonic
.tv_sec
= -now
.tv_sec
;
114 wall_to_monotonic
.tv_nsec
= -now
.tv_nsec
;
117 /* Declared in linux/time.h, which can't be included here */
118 extern void clock_was_set(void);
120 void do_gettimeofday(struct timeval
*tv
)
125 gettimeofday(tv
, NULL
);
126 timeradd(tv
, &local_offset
, tv
);
131 int do_settimeofday(struct timespec
*tv
)
135 struct timeval tv_in
;
137 if ((unsigned long) tv
->tv_nsec
>= UM_NSEC_PER_SEC
)
140 tv_in
.tv_sec
= tv
->tv_sec
;
141 tv_in
.tv_usec
= tv
->tv_nsec
/ 1000;
144 gettimeofday(&now
, NULL
);
145 timersub(&tv_in
, &now
, &local_offset
);
151 void idle_sleep(int secs
)
157 nanosleep(&ts
, NULL
);
160 /* XXX This partly duplicates init_irq_signals */
162 void user_time_init(void)
164 set_handler(SIGVTALRM
, (__sighandler_t
) alarm_handler
,
165 SA_ONSTACK
| SA_RESTART
, SIGUSR1
, SIGIO
, SIGWINCH
,
166 SIGALRM
, SIGUSR2
, -1);
167 set_handler(SIGALRM
, (__sighandler_t
) alarm_handler
,
168 SA_ONSTACK
| SA_RESTART
, SIGUSR1
, SIGIO
, SIGWINCH
,
169 SIGVTALRM
, SIGUSR2
, -1);
170 set_interval(ITIMER_VIRTUAL
);