操作系统中的信号量

发布于 2024-12-06 22:55:34 字数 159 浏览 1 评论 0原文

那么,到底是什么改变了流程的上下文呢? 假设我有一个算法,其中

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少心凉 2024-12-13 22:55:34

我认为你想要做什么

S=0;
begin
wait(S);    
<critical>
signal(S);
end

首先等待一些信号(锁定或来自其他进程的信号),然后进入关键部分。一旦脱离临界区,就通知其他等待进程唤醒。

I think what you want to do this

S=0;
begin
wait(S);    
<critical>
signal(S);
end

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文