aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/os-Linux/skas/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um/os-Linux/skas/process.c')
-rw-r--r--arch/um/os-Linux/skas/process.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c
index 9936531a2620..8548f126d628 100644
--- a/arch/um/os-Linux/skas/process.c
+++ b/arch/um/os-Linux/skas/process.c
@@ -294,8 +294,8 @@ void userspace(struct uml_pt_regs *regs)
294 294
295 if (getitimer(ITIMER_VIRTUAL, &timer)) 295 if (getitimer(ITIMER_VIRTUAL, &timer))
296 printk("Failed to get itimer, errno = %d\n", errno); 296 printk("Failed to get itimer, errno = %d\n", errno);
297 nsecs = timer.it_value.tv_sec * BILLION + 297 nsecs = timer.it_value.tv_sec * UM_NSEC_PER_SEC +
298 timer.it_value.tv_usec * 1000; 298 timer.it_value.tv_usec * UM_NSEC_PER_USEC;
299 nsecs += os_nsecs(); 299 nsecs += os_nsecs();
300 300
301 while (1) { 301 while (1) {
@@ -347,8 +347,10 @@ void userspace(struct uml_pt_regs *regs)
347 block_signals(); 347 block_signals();
348 (*sig_info[sig])(sig, regs); 348 (*sig_info[sig])(sig, regs);
349 unblock_signals(); 349 unblock_signals();
350 nsecs = timer.it_value.tv_sec * BILLION + 350 nsecs = timer.it_value.tv_sec *
351 timer.it_value.tv_usec * 1000; 351 UM_NSEC_PER_SEC +
352 timer.it_value.tv_usec *
353 UM_NSEC_PER_USEC;
352 nsecs += os_nsecs(); 354 nsecs += os_nsecs();
353 break; 355 break;
354 case SIGIO: 356 case SIGIO:
@@ -395,7 +397,7 @@ __initcall(init_thread_regs);
395 397
396int copy_context_skas0(unsigned long new_stack, int pid) 398int copy_context_skas0(unsigned long new_stack, int pid)
397{ 399{
398 struct timeval tv = { .tv_sec = 0, .tv_usec = 1000000 / UM_HZ }; 400 struct timeval tv = { .tv_sec = 0, .tv_usec = UM_USEC_PER_SEC / UM_HZ };
399 int err; 401 int err;
400 unsigned long current_stack = current_stub_stack(); 402 unsigned long current_stack = current_stub_stack();
401 struct stub_data *data = (struct stub_data *) current_stack; 403 struct stub_data *data = (struct stub_data *) current_stack;