diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:27:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:08 -0400 |
commit | 532d0fa4d104ca3e37dd38bc5073376fcc3c2712 (patch) | |
tree | a2ece8d09bc22a616abd743c170b2a727c1d077e /arch/um/os-Linux/skas/process.c | |
parent | 088bec4141ceb663eecdd961292d110db891db73 (diff) |
uml: eliminate hz()
Eliminate hz() since its only purpose was to provide a kernel-space constant
to userspace code. This can be done instead by providing the constant
directly through kernel_constants.h.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/os-Linux/skas/process.c')
-rw-r--r-- | arch/um/os-Linux/skas/process.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c index 47efe9087eee..5462469f4ebf 100644 --- a/arch/um/os-Linux/skas/process.c +++ b/arch/um/os-Linux/skas/process.c | |||
@@ -392,8 +392,9 @@ int copy_context_skas0(unsigned long new_stack, int pid) | |||
392 | *data = ((struct stub_data) { .offset = MMAP_OFFSET(new_offset), | 392 | *data = ((struct stub_data) { .offset = MMAP_OFFSET(new_offset), |
393 | .fd = new_fd, | 393 | .fd = new_fd, |
394 | .timer = ((struct itimerval) | 394 | .timer = ((struct itimerval) |
395 | { { 0, 1000000 / hz() }, | 395 | { { 0, 1000000 / UM_HZ }, |
396 | { 0, 1000000 / hz() }})}); | 396 | { 0, 1000000 / UM_HZ }}) |
397 | }); | ||
397 | err = ptrace_setregs(pid, thread_regs); | 398 | err = ptrace_setregs(pid, thread_regs); |
398 | if (err < 0) | 399 | if (err < 0) |
399 | panic("copy_context_skas0 : PTRACE_SETREGS failed, " | 400 | panic("copy_context_skas0 : PTRACE_SETREGS failed, " |