Linux :多处理器遇到实时进程和普通进程的程序设计
get_thread_info(thread_index);
long num = 0;
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 5000000; j++)
{
// 没什么意义,纯粹是模拟 CPU 密集计算。
float f1 = ((i+1) * 345.45) * 12.3 * 45.6 / 78.9 / ((j+1) * 4567.89);
float f2 = (i+1) * 12.3 * 45.6 / 78.9 * (j+1);
float f3 = f1 / f2;
}
// 打印计数信息,为了能看到某个线程正在执行
printf("thread_index %d: num = %ld ", thread_index, num++);
}
// 线程执行结束
printf("thread_index %d: exit ", thread_index);
return 0;
}
void main(void)
{
// 一共创建四个线程:0和1-实时线程,2和3-普通线程(非实时)
int thread_num = 4;
// 分配的线程索引号,会传递给线程参数
int index[4] = {1, 2, 3, 4};
// 用来保存 4 个线程的 id 号
pthread_t ppid[4];
// 用来设置 2 个实时线程的属性:调度策略和优先级
pthread_attr_t attr[2];
struct sched_param param[2];
// 实时线程,必须由 root 用户才能创建
if (0 != getuid())
{
printf("Please run as root ");
exit(0);
}
// 创建 4 个线程
for (int i = 0; i < thread_num; i++)
{
if (i <= 1) // 前2个创建实时线程
{
// 初始化线程属性
pthread_attr_init(&attr[i]);
// 设置调度策略为:SCHED_FIFO
pthread_attr_setschedpolicy(&attr[i], SCHED_FIFO);
// 设置优先级为 51,52。
param[i].__sched_priority = 51 + i;
pthread_attr_setschedparam(&attr[i], &param[i]);
// 设置线程属性:不要继承 main 线程的调度策略和优先级。
pthread_attr_setinheritsched(&attr[i], PTHREAD_EXPLICIT_SCHED);
// 创建线程
pthread_create(&ppid[i], &attr[i],(void *)thread_routine, (void *)&index[i]);
}
else // 后两个创建普通线程
{
pthread_create(&ppid[i], 0, (void *)thread_routine, (void *)&index[i]);
}
}
// 等待 4 个线程执行结束
for (int i = 0; i < 4; i++)
pthread_join(ppid[i], 0);
for (int i = 0; i < 2; i++)
pthread_attr_destroy(&attr[i]);
}
编译成可执行程序的指令:
gcc -o test test.c -lpthread
脑残测试开始
首先说一下预期结果,如果没有预期结果,那其他任何问题都压根不用谈了。
一共有 4 个线程:
线程索引号 1和2:是实时线程(调度策略是 SCHED_FIFO,优先级是 51,52);
线程索引号 3和4:是普通线程(调度策略是 SCHED_OTHER, 优先级是 0);
我的测试环境是:Ubuntu16.04,是一台安装在 Windows10 上面的虚拟机。
我期望的结果是:
首先打印 1 号和 2 号这两个线程的信息,因为它俩是实时任务,需要优先被调度;
1 号线程的优先级是 51,小于 2 号线程的优先级 52,因此应该是 2 号线程结束之后,才轮到 1 号线程执行;
3 号和 4 号线程是普通进程,它俩需要等到 1 号和 2 号线程全部执行结束之后才开始执行,并且 3 号和 4 号线程应该是交替执行,因为它俩的调度策略和优先级都是一样的。
我满怀希望的在工作电脑中测试,打印结果如下:
====> thread_index = 4
thread_index 4: SCHED_OTHER
thread_index 4: priority = 0
====> thread_index = 1
thread_index 1: SCHED_FIFO
thread_index 1: priority = 51
====> thread_index = 2
thread_index 2: SCHED_FIFO
thread_index 2: priority = 52
thread_index 2: num = 0
thread_index 4: num = 0
====> thread_index = 3
thread_index 3: SCHED_OTHER
thread_index 3: priority = 0
thread_index 1: num = 0
thread_index 2: num = 1
thread_index 4: num = 1
thread_index 3: num = 0
thread_index 1: num = 1
thread_index 2: num = 2
thread_index 4: num = 2
thread_index 3: num = 1
后面打印内容不用输出了,因为前面已经出现了问题。
最新活动更多
-
即日-11.13立即报名>>> 【在线会议】多物理场仿真助跑新能源汽车
-
11月20日火热报名中>> 2024 智能家居出海论坛
-
11月28日立即报名>>> 2024工程师系列—工业电子技术在线会议
-
12月19日立即报名>> 【线下会议】OFweek 2024(第九届)物联网产业大会
-
即日-12.26火热报名中>> OFweek2024中国智造CIO在线峰会
-
即日-2025.8.1立即下载>> 《2024智能制造产业高端化、智能化、绿色化发展蓝皮书》
推荐专题
发表评论
请输入评论内容...
请输入评论/评论长度6~500个字
暂无评论
暂无评论