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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 3d9120c5ad15..d8e699b55858 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -451,8 +451,8 @@ struct signal_struct {
451 * - everyone except group_exit_task is stopped during signal delivery 451 * - everyone except group_exit_task is stopped during signal delivery
452 * of fatal signals, group_exit_task processes the signal. 452 * of fatal signals, group_exit_task processes the signal.
453 */ 453 */
454 struct task_struct *group_exit_task;
455 int notify_count; 454 int notify_count;
455 struct task_struct *group_exit_task;
456 456
457 /* thread group stop support, overloads group_exit_code too */ 457 /* thread group stop support, overloads group_exit_code too */
458 int group_stop_count; 458 int group_stop_count;
@@ -897,7 +897,7 @@ struct sched_class {
897 void (*yield_task) (struct rq *rq); 897 void (*yield_task) (struct rq *rq);
898 int (*select_task_rq)(struct task_struct *p, int sync); 898 int (*select_task_rq)(struct task_struct *p, int sync);
899 899
900 void (*check_preempt_curr) (struct rq *rq, struct task_struct *p); 900 void (*check_preempt_curr) (struct rq *rq, struct task_struct *p, int sync);
901 901
902 struct task_struct * (*pick_next_task) (struct rq *rq); 902 struct task_struct * (*pick_next_task) (struct rq *rq);
903 void (*put_prev_task) (struct rq *rq, struct task_struct *p); 903 void (*put_prev_task) (struct rq *rq, struct task_struct *p);
@@ -1010,8 +1010,8 @@ struct sched_entity {
1010 1010
1011struct sched_rt_entity { 1011struct sched_rt_entity {
1012 struct list_head run_list; 1012 struct list_head run_list;
1013 unsigned int time_slice;
1014 unsigned long timeout; 1013 unsigned long timeout;
1014 unsigned int time_slice;
1015 int nr_cpus_allowed; 1015 int nr_cpus_allowed;
1016 1016
1017 struct sched_rt_entity *back; 1017 struct sched_rt_entity *back;