【2024年】408计算机统考真题模拟考试 - 第46题答案笔记
操作系统
发布于2024年12月18日 16:11
阅读数 38
(1) 是临界区,需要使用到共享资源B
(2)
semaphore over = 0;
P1
{
C1;
signal(over);
}
P2
{
wait(over);
C2;
}
(2)
semaphore mutex = 1;
P1
{
wait(mutex);
C3:
signal(mutex);
}
P2
{
wait(mutex);
C3:
signal(mutex);
}
登录后发布评论
暂无评论,来抢沙发