diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2019-08-19 17:31:47 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-08-21 21:27:16 +0300 |
commit | dce3e8fd039cc1b62760b3ad6822cf04c262cd0e (patch) | |
tree | ca7bbb04c130b0216f13d7db1af4dcf28d321618 /include/linux/posix-timers.h | |
parent | 692117c1f7a6770ed41dd8f277cd9fed1dfb16f1 (diff) | |
download | linux-dce3e8fd039cc1b62760b3ad6822cf04c262cd0e.tar.xz |
posix-cpu-timers: Remove tsk argument from run_posix_cpu_timers()
It's always current. Don't give people wrong ideas.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Link: https://lkml.kernel.org/r/20190819143801.945469967@linutronix.de
Diffstat (limited to 'include/linux/posix-timers.h')
-rw-r--r-- | include/linux/posix-timers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/posix-timers.h b/include/linux/posix-timers.h index 26c636d1485b..033374b99767 100644 --- a/include/linux/posix-timers.h +++ b/include/linux/posix-timers.h @@ -118,7 +118,7 @@ struct k_itimer { struct rcu_head rcu; }; -void run_posix_cpu_timers(struct task_struct *task); +void run_posix_cpu_timers(void); void posix_cpu_timers_exit(struct task_struct *task); void posix_cpu_timers_exit_group(struct task_struct *task); void set_process_cpu_timer(struct task_struct *task, unsigned int clock_idx, |