- 论坛徽章:
- 0
|
本帖最后由 yeahnoob 于 2014-09-24 23:35 编辑
LZ一开始关于lock和cond_wait 的内容应该是不正确的。
lock只是一个声明性质的函数,声明出一个阻塞式变量,单独不会直接影响sub的执行。
cond_wait的实际用途,恰好是LZ一开始对lock函数理解的用途。另外两个cond_signal和cond_broadcast在perldoc里面我觉得说的是很清楚,
- cond_signal VARIABLE
- The "cond_signal" function takes a locked variable as a parameter and unblocks one thread that's "cond_wait"ing on that variable. If
- more than one thread is blocked in a "cond_wait" on that variable, only one (and which one is indeterminate) will be unblocked.
- If there are no threads blocked in a "cond_wait" on the variable, the signal is discarded. By always locking before signaling, you can
- (with care), avoid signaling before another thread has entered cond_wait().
- "cond_signal" will normally generate a warning if you attempt to use it on an unlocked variable. On the rare occasions where doing this
- may be sensible, you can suppress the warning with:
- { no warnings 'threads'; cond_signal($foo); }
- cond_broadcast VARIABLE
- The "cond_broadcast" function works similarly to "cond_signal". "cond_broadcast", though, will unblock all the threads that are blocked
- in a "cond_wait" on the locked variable, rather than only one.
复制代码 |
|