- 论坛徽章:
- 0
|
本帖最后由 Solaris12 于 2010-08-16 11:34 编辑
有信号量为什么还要搞条件变量呢?
gqbfree 发表于 2010-08-13 15:56 ![]()
信号量是可以和条件变量互换使用的.
但在不同的场合,用对了写出的代码更简洁.
例如.Solaris文件系统里大量使用信号量的设计,一开始我是不理解的,觉得用条件变量也一样,现在发现信号量在生产者需要等待消费者而无条件睡眠的情况下,用信号量是最简单高效。
我一直觉得SUN的图书Multithreaded Programming Guide是多线程编程的经典之作。
刚才大概看了看你的文档, 你关于Semaphore的文字大概可以用这本书的章节作为答案
:
http://docs.sun.com/app/docs/doc/816-5137/sync-11157?a=view
The two basic sorts of semaphores are binary semaphores and counting
semaphores. Binary semaphores never take on values other than zero or
one, and counting semaphores take on arbitrary nonnegative values. A
binary semaphore is logically just like a mutex.
However, although not always enforced, mutexes should be unlocked only
by the thread that holds the lock. Because no notion exists of “the
thread that holds the semaphore,” any thread can perform a V or
sem_post (3RT) operation.
Counting semaphores are nearly as powerful as conditional variables
when used in conjunction with mutexes. In many cases, the code might
be simpler when implemented with counting semaphores rather than with
condition variables, as shown in Example 4–14, Example 4–15, and
Example 4–16. |
|