保证信号量顺序?

发布于 2024-08-27 06:06:27 字数 317 浏览 4 评论 0 原文

.NET 文档 >Semaphore 类指出:

阻塞线程进入信号量的顺序没有保证,例如 FIFO 或 LIFO。

在这种情况下,如果我想要有保证的订单(先进先出或后进先出),我有哪些选择?这是一件不容易实现的事情吗?我必须编写自己的信号量吗?我认为这将是相当先进的。

The documentation for the .NET Semaphore class states that:

There is no guaranteed order, such as FIFO or LIFO, in which blocked threads enter the semaphore.

In this case, if I want a guaranteed order (either FIFO or LIFO), what are my options? Is this something that just isn't easily possible? Would I have to write my own Semaphore? I assume that would be pretty advanced.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

缘字诀 2024-09-03 06:06:27

请参阅

FifoSemaphore 的工作方式与普通 Semaphore 完全相同,但也保证按照获取者设法获取内部锁的顺序向获取者提供令牌。 FifoSemaphore 的用法与 Semaphore 相同。

See this:

The FifoSemaphore works exactly like a normal Semaphore but also guarantees that tokens are served out to acquirers in the order that they manage to acquire the internal lock. The usage of a FifoSemaphore is identical to a Semaphore.

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