aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index e0054c1b9a09..20b4f0372e44 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -35,6 +35,7 @@
35#include <linux/topology.h> 35#include <linux/topology.h>
36#include <linux/seccomp.h> 36#include <linux/seccomp.h>
37#include <linux/rcupdate.h> 37#include <linux/rcupdate.h>
38#include <linux/futex.h>
38 39
39#include <linux/auxvec.h> /* For AT_VECTOR_SIZE */ 40#include <linux/auxvec.h> /* For AT_VECTOR_SIZE */
40 41
@@ -402,6 +403,7 @@ struct signal_struct {
402 403
403 /* ITIMER_REAL timer for the process */ 404 /* ITIMER_REAL timer for the process */
404 struct hrtimer real_timer; 405 struct hrtimer real_timer;
406 struct task_struct *tsk;
405 ktime_t it_real_incr; 407 ktime_t it_real_incr;
406 408
407 /* ITIMER_PROF and ITIMER_VIRTUAL timers for the process */ 409 /* ITIMER_PROF and ITIMER_VIRTUAL timers for the process */
@@ -871,6 +873,11 @@ struct task_struct {
871 int cpuset_mems_generation; 873 int cpuset_mems_generation;
872 int cpuset_mem_spread_rotor; 874 int cpuset_mem_spread_rotor;
873#endif 875#endif
876 struct robust_list_head __user *robust_list;
877#ifdef CONFIG_COMPAT
878 struct compat_robust_list_head __user *compat_robust_list;
879#endif
880
874 atomic_t fs_excl; /* holding fs exclusive resources */ 881 atomic_t fs_excl; /* holding fs exclusive resources */
875 struct rcu_head rcu; 882 struct rcu_head rcu;
876}; 883};