whitespace fixes: interval timers
Signed-off-by: Daniel Walker <dwalker@mvista.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
62769dce86
commit
0719e3702e
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ asmlinkage long sys_getitimer(int which, struct itimerval __user *value)
|
||||||
enum hrtimer_restart it_real_fn(struct hrtimer *timer)
|
enum hrtimer_restart it_real_fn(struct hrtimer *timer)
|
||||||
{
|
{
|
||||||
struct signal_struct *sig =
|
struct signal_struct *sig =
|
||||||
container_of(timer, struct signal_struct, real_timer);
|
container_of(timer, struct signal_struct, real_timer);
|
||||||
|
|
||||||
send_group_sig_info(SIGALRM, SEND_SIG_PRIV, sig->tsk);
|
send_group_sig_info(SIGALRM, SEND_SIG_PRIV, sig->tsk);
|
||||||
|
|
||||||
|
@ -291,6 +291,6 @@ asmlinkage long sys_setitimer(int which,
|
||||||
return error;
|
return error;
|
||||||
|
|
||||||
if (copy_to_user(ovalue, &get_buffer, sizeof(get_buffer)))
|
if (copy_to_user(ovalue, &get_buffer, sizeof(get_buffer)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue