aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/itimer.c37
-rw-r--r--kernel/timer.c14
2 files changed, 38 insertions, 13 deletions
diff --git a/kernel/itimer.c b/kernel/itimer.c
index 379be2f8c84c..a2dc375927d8 100644
--- a/kernel/itimer.c
+++ b/kernel/itimer.c
@@ -226,6 +226,43 @@ again:
226 return 0; 226 return 0;
227} 227}
228 228
229/**
230 * alarm_setitimer - set alarm in seconds
231 *
232 * @seconds: number of seconds until alarm
233 * 0 disables the alarm
234 *
235 * Returns the remaining time in seconds of a pending timer or 0 when
236 * the timer is not active.
237 *
238 * On 32 bit machines the seconds value is limited to (INT_MAX/2) to avoid
239 * negative timeval settings which would cause immediate expiry.
240 */
241unsigned int alarm_setitimer(unsigned int seconds)
242{
243 struct itimerval it_new, it_old;
244
245#if BITS_PER_LONG < 64
246 if (seconds > INT_MAX)
247 seconds = INT_MAX;
248#endif
249 it_new.it_value.tv_sec = seconds;
250 it_new.it_value.tv_usec = 0;
251 it_new.it_interval.tv_sec = it_new.it_interval.tv_usec = 0;
252
253 do_setitimer(ITIMER_REAL, &it_new, &it_old);
254
255 /*
256 * We can't return 0 if we have an alarm pending ... And we'd
257 * better return too much than too little anyway
258 */
259 if ((!it_old.it_value.tv_sec && it_old.it_value.tv_usec) ||
260 it_old.it_value.tv_usec >= 500000)
261 it_old.it_value.tv_sec++;
262
263 return it_old.it_value.tv_sec;
264}
265
229asmlinkage long sys_setitimer(int which, 266asmlinkage long sys_setitimer(int which,
230 struct itimerval __user *value, 267 struct itimerval __user *value,
231 struct itimerval __user *ovalue) 268 struct itimerval __user *ovalue)
diff --git a/kernel/timer.c b/kernel/timer.c
index 17d956cebcb9..13fa72cac7d8 100644
--- a/kernel/timer.c
+++ b/kernel/timer.c
@@ -956,19 +956,7 @@ void do_timer(struct pt_regs *regs)
956 */ 956 */
957asmlinkage unsigned long sys_alarm(unsigned int seconds) 957asmlinkage unsigned long sys_alarm(unsigned int seconds)
958{ 958{
959 struct itimerval it_new, it_old; 959 return alarm_setitimer(seconds);
960 unsigned int oldalarm;
961
962 it_new.it_interval.tv_sec = it_new.it_interval.tv_usec = 0;
963 it_new.it_value.tv_sec = seconds;
964 it_new.it_value.tv_usec = 0;
965 do_setitimer(ITIMER_REAL, &it_new, &it_old);
966 oldalarm = it_old.it_value.tv_sec;
967 /* ehhh.. We can't return 0 if we have an alarm pending.. */
968 /* And we'd better return too much than too little anyway */
969 if ((!oldalarm && it_old.it_value.tv_usec) || it_old.it_value.tv_usec >= 500000)
970 oldalarm++;
971 return oldalarm;
972} 960}
973 961
974#endif 962#endif