aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched/task.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2017-02-05 09:30:50 -0500
committerIngo Molnar <mingo@kernel.org>2017-03-02 19:45:26 -0500
commitcda66725c1444db67127115d611c982b62b45d8c (patch)
treeb57a93cb524edc09a4c402ffaa33a95324d48167 /include/linux/sched/task.h
parentdcc2dc45f7cf267d37843059ff75b70260596c69 (diff)
sched/headers: Move the get_task_struct()/put_task_struct() and related APIs from <linux/sched.h> to <linux/sched/task.h>
These belong into the task lifetime API header. Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mike Galbraith <efault@gmx.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux/sched/task.h')
-rw-r--r--include/linux/sched/task.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/sched/task.h b/include/linux/sched/task.h
index a33a8121da9a..3886ae64148f 100644
--- a/include/linux/sched/task.h
+++ b/include/linux/sched/task.h
@@ -75,6 +75,21 @@ extern long do_fork(unsigned long, unsigned long, unsigned long, int __user *, i
75struct task_struct *fork_idle(int); 75struct task_struct *fork_idle(int);
76extern pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); 76extern pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
77 77
78extern void free_task(struct task_struct *tsk);
79
80#define get_task_struct(tsk) do { atomic_inc(&(tsk)->usage); } while(0)
81
82extern void __put_task_struct(struct task_struct *t);
83
84static inline void put_task_struct(struct task_struct *t)
85{
86 if (atomic_dec_and_test(&t->usage))
87 __put_task_struct(t);
88}
89
90struct task_struct *task_rcu_dereference(struct task_struct **ptask);
91struct task_struct *try_get_task_struct(struct task_struct **ptask);
92
78 93
79#ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT 94#ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT
80extern int arch_task_struct_size __read_mostly; 95extern int arch_task_struct_size __read_mostly;