X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-linux.git;a=blobdiff_plain;f=include%2Flinux%2Fsched.h;fp=include%2Flinux%2Fsched.h;h=56667292d1e444df2e9f21fc8281caf32e44f3f5;hp=aec904bc3da9b10aa4d69bece034b77aed3b5e1f;hb=281422869942c19f05a08d4017c633d08d390938;hpb=b33e18f61bd18227a456016a77b1a968f5bc1d65 diff --git a/include/linux/sched.h b/include/linux/sched.h index aec904bc3da9..56667292d1e4 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -617,15 +617,18 @@ struct task_cputime_atomic { /** * struct thread_group_cputimer - thread group interval timer counts * @cputime_atomic: atomic thread group interval timers. - * @running: non-zero when there are timers running and - * @cputime receives updates. + * @running: true when there are timers running and + * @cputime_atomic receives updates. + * @checking_timer: true when a thread in the group is in the + * process of checking for thread group timers. * * This structure contains the version of task_cputime, above, that is * used for thread group CPU timer calculations. */ struct thread_group_cputimer { struct task_cputime_atomic cputime_atomic; - int running; + bool running; + bool checking_timer; }; #include