您好,欢迎来到思海网络,我们将竭诚为您提供优质的服务! 诚征网络推广 | 网站备案 | 帮助中心 | 软件下载 | 购买流程 | 付款方式 | 联系我们 [ 会员登录/注册 ]
促销推广
客服中心
业务咨询
有事点击这里…  531199185
有事点击这里…  61352289
点击这里给我发消息  81721488
有事点击这里…  376585780
有事点击这里…  872642803
有事点击这里…  459248018
有事点击这里…  61352288
有事点击这里…  380791050
技术支持
有事点击这里…  714236853
有事点击这里…  719304487
有事点击这里…  1208894568
有事点击这里…  61352289
在线客服
有事点击这里…  531199185
有事点击这里…  61352288
有事点击这里…  983054746
有事点击这里…  893984210
当前位置:首页 >> 技术文章 >> 文章浏览
技术文章

Linux内核的调度策略及线程设置

添加时间:2010-11-21  添加: admin 
Linux内核的三种调度策略:

  1,SCHED_OTHER 分时调度策略,

  2,SCHED_FIFO实时调度策略,先到先服务。一旦占用cpu则一直运行。一直运行直到有更高优先级任务到达或自己放弃

  3,SCHED_RR实时调度策略,时间片轮转。当进程的时间片用完,系统将重新分配时间片,并置于就绪队列尾。放在队列尾保证了所有具有相同优先级的RR任务的调度公平

  Linux线程优先级设置

  首先,可以通过以下两个函数来获得线程可以设置的最高和最低优先级,函数中的策略即上述三种策略的宏定义:

  以下是代码片段:

  int sched_get_priority_max(int policy);

  int sched_get_priority_min(int policy);

  SCHED_OTHER是不支持优先级使用的,而SCHED_FIFO和SCHED_RR支持优先级的使用,他们分别为1和99,数值越大优先级越高。

  设置和获取优先级通过以下两个函数:

  以下是代码片段:

  int pthread_attr_setschedparam(pthread_attr_t *attr, const struct sched_param *param);

  int pthread_attr_getschedparam(const pthread_attr_t *attr, struct sched_param *param);

  例如以下代码创建了一个优先级为10的线程:

  以下是代码片段:

  struct sched_param

  {

  int __sched_priority; //所要设定的线程优先级

  };

  例:创建优先级为10的线程

  以下是代码片段:

  pthread_attr_t attr;

  struct sched_param param;

  pthread_attr_init(&attr);

  pthread_attr_setschedpolicy(&attr, SCHED_RR);

  param.sched_priority = 10;

  pthread_attr_setschedparam(&attr, ¶m);

  pthread_create(xxx , &attr , xxx , xxx);

  pthread_attr_destroy(&attr);

分享到:

顶部 】 【 关闭
版权所有:佛山思海电脑网络有限公司 ©1998-2024 All Rights Reserved.
联系电话:(0757)22630313、22633833
中华人民共和国增值电信业务经营许可证: 粤B1.B2-20030321 备案号:粤B2-20030321-1
网站公安备案编号:44060602000007 交互式栏目专项备案编号:200303DD003  
察察 工商 网安 举报有奖  警警  手机打开网站