- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
信号实现父子进程之间的同步sigsuspend的作用
DDLLUUTTBBrruucceeZZhhaanngg的的专专栏栏
生生活活就就是是需需要要有有创创意意例例如如:: ooddiinngg DDeebbuugg
[[置置顶顶]] 信信号号实实现现父父子子进进程程之之间间的的同同步步ssiiggssuussppeenndd的的作作用用
分类: 《UNIX环境高级编程》 2013-05-11 14 :00 438人阅读 评论 (0) 收藏 举报
printf函数编程UNIXLinux
函函数数原原型型:: #include signal.h
int sigsuspend(const sigset_t *mask);
作作用用:: 用用于于在在接接收收到到某某个个信信号号之之前前,,临临时时用用mask替替换换进进程程的的信信号号掩掩码码,,并并暂暂停停进进程程执执
行行,,直直到到收收到到信信号号为为止止。。
The sigsuspend() function replaces the current signal mask of the calling thread w ith
the set of signals pointed to b sigmask and then suspends the thread until deliver of
a signal w hose action is either to execute a signal-catching function or to terminate the
process. This w ill not cause an other signals that ma have been pending on the
process to become pending on the thread.
If the action is to terminate the process then sigsuspend() w ill never return. If the
action is to execute a signal-catching function, thensigsuspend() w ill return after the
signal-catching function returns, w ith the signal mask restored to the set that ex isted
prior to thesigsuspend() call.
It is not possible to block signals that cannot be ignored. This is enforced b the
s stem w ithout causing an error to be indicated.
也也就就是是说说,,sigsuspend后后,,进进程程就就挂挂在在那那里里,,等等待待着着开开放放的的信信号号的的唤唤醒醒。。系系统统在在接接收收到到信信
号号后后,,马马上上就就把把现现在在的的信信号号集集还还原原为为原原来来的的,,然然后后调调用用处处理理函函数数。。
返返回回值值:: sigsuspend返返回回后后将将恢恢复复调调用用之之前前的的的的信信号号掩掩码码。。信信号号处处理理函函数数完完成成后后,,进进程程将将
继继续续执执行行。。该该系系统统调调用用始始终终返返回回-1,,并并将将errno设设置置为为EINTR.
Since sigsuspend() suspends process execution indefinitel , there is no successful
completion return value. If a return occurs, -1 is returned and errno is set to indicate
the error.
The sigsuspend() function w ill fail if:
[EINTR]
A signal is caught b the calling process and control is returned from the signal-
catching function.
也也就就是是说说,,sigsuspend后后,,进进程程就就挂挂在在那那里里,,等等待待着着开开放放的的信信号号的的唤唤醒醒。。系系统统在在接接受受到到信信
号号后后,,马马上上就就把把现现在在的的信信号号集集还还原原为为原原来来的的,,然然后后调调用
文档评论(0)