操作系统中的信号量
那么,到底是什么改变了流程的上下文呢? 假设我有一个算法,其中
S=0;
begin
signal(S);
<critical>
wait(S);
end
现在说,当我的信号被执行时,进程会被抢占并且队列中的进程将被执行吗?
Well, what exactly changes the context of processes.
Say i have a algo, in which say
S=0;
begin
signal(S);
<critical>
wait(S);
end
Now in this, when my signal is executed, will the process be preempted and the process from the queue will be executed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你想要做什么
首先等待一些信号(锁定或来自其他进程的信号),然后进入关键部分。一旦脱离临界区,就通知其他等待进程唤醒。
I think what you want to do this
First wait for some signal(locking, or signal from some other process) and then enter into the critical section. And once out of the critical section, signal the other waiting processes to wake up.