Chinaunix首页 | 论坛 | 博客
  • 博客访问: 333018
  • 博文数量: 102
  • 博客积分: 2510
  • 博客等级: 少校
  • 技术积分: 1146
  • 用 户 组: 普通用户
  • 注册时间: 2010-01-21 22:33
文章分类

全部博文(102)

文章存档

2011年(8)

2010年(94)

我的朋友

分类: LINUX

2010-03-29 22:25:41

可以查看之前水木版聚讲的ppt,里面有详细的group scheduler解释。


/* return group to which a task belongs */ 
static inline struct task_group *task_group(struct task_struct *p) 

struct task_group *tg; 

#ifdef CONFIG_USER_SCHED  用户调度的情况
rcu_read_lock(); 
tg = __task_cred(p)->user->tg; 
 rcu_read_unlock(); 
#elif defined(CONFIG_CGROUP_SCHED)  资源控制组使能的情况
tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id), 
 struct task_group, css); 
#else 
tg = &init_task_group; 
#endif 
 return tg; 


阅读(1296) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~