免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2766 | 回复: 5
打印 上一主题 下一主题

跪求大神解答 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-09-23 17:00 |只看该作者 |倒序浏览
我目前在学习一个Perl模块,叫threads::shared

在这个模块里我对于cond_broadcast这个函数不是很理解。其实说实话,我对于多线程就不是很理解。
比如lock函数的作用是什么,为什么要有lock函数
同样的cond_wait函数又有什么作用?
cond_signal和cond_broadcast函数呢?

我看了perl的帮助文档,对于这些函数有一些理解,但是还是需要大神给予确定才行。


首先是lock函数
比如有如下代码:
```
sub fun1{
    lock $public_var;
    ....
}
```
这样一来,在多线程运行时,当运行到lock这里时,其他函数不能对$public_var进行修改,直到fun1函数运行完成。


其次是cond_wait函数
比如有如下代码:
```
sub fun2{
   cond_wait $public_var;
   ....
}
```
这样一来,如果同一时间运行fun1和fun2两个函数,那么首先会在fun1中可以修改$public_var,运行完fun1后,在fun2中可以修改$public_var。

是这样吗?我对这个函数理解不清晰......


最后是cond_signal和cond_broadcast
这两个函数就完全没有理解了.......


所以跪求大神给予指导{:3_200:}

论坛徽章:
0
2 [报告]
发表于 2014-09-23 17:04 |只看该作者
消灭0回复!

论坛徽章:
0
3 [报告]
发表于 2014-09-24 07:51 |只看该作者
顶顶顶顶顶顶顶顶顶

论坛徽章:
0
4 [报告]
发表于 2014-09-24 17:27 |只看该作者
顶顶顶顶顶顶顶顶顶

论坛徽章:
0
5 [报告]
发表于 2014-09-24 23:28 |只看该作者
本帖最后由 yeahnoob 于 2014-09-24 23:35 编辑

LZ一开始关于lock和cond_wait 的内容应该是不正确的。
lock只是一个声明性质的函数,声明出一个阻塞式变量,单独不会直接影响sub的执行。
cond_wait的实际用途,恰好是LZ一开始对lock函数理解的用途。
  1. perldoc threads::shared
复制代码
另外两个cond_signal和cond_broadcast在perldoc里面我觉得说的是很清楚,

  1.        cond_signal VARIABLE
  2.            The "cond_signal" function takes a locked variable as a parameter and unblocks one thread that's "cond_wait"ing on that variable. If
  3.            more than one thread is blocked in a "cond_wait" on that variable, only one (and which one is indeterminate) will be unblocked.

  4.            If there are no threads blocked in a "cond_wait" on the variable, the signal is discarded. By always locking before signaling, you can
  5.            (with care), avoid signaling before another thread has entered cond_wait().

  6.            "cond_signal" will normally generate a warning if you attempt to use it on an unlocked variable. On the rare occasions where doing this
  7.            may be sensible, you can suppress the warning with:

  8.              { no warnings 'threads'; cond_signal($foo); }

  9.        cond_broadcast VARIABLE
  10.            The "cond_broadcast" function works similarly to "cond_signal".  "cond_broadcast", though, will unblock all the threads that are blocked
  11.            in a "cond_wait" on the locked variable, rather than only one.
复制代码

论坛徽章:
0
6 [报告]
发表于 2014-09-25 08:57 |只看该作者
谢谢你~~一语点醒梦中人回复 5# yeahnoob


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP