当前位置: 技术问答>linux和unix
系统编程中信号量的学习
来源: 互联网 发布时间:2017-04-17
本文导语: 对于UNIX高级编程中信号量的哪一章,小弟始终看的是云里雾里的哇,有没有同感的已经冲破这一章的给指条明路啊,这大热天的开空调都憋得出汗啊。。。 | http://www.unix.com/man-page/Linux/3/sighold/ NAME ...
对于UNIX高级编程中信号量的哪一章,小弟始终看的是云里雾里的哇,有没有同感的已经冲破这一章的给指条明路啊,这大热天的开空调都憋得出汗啊。。。
|
http://www.unix.com/man-page/Linux/3/sighold/
NAME
sigset, sighold, sigrelse, sigignore - System V signal API
DESCRIPTION
These functions are provided in glibc as a compatibility interface for
programs that make use of the historical System V signal API. This API
is obsolete: new applications should use the POSIX signal API (sigac-
tion(2), sigprocmask(2), etc.)
The sighold() function adds sig to the calling process's signal mask.
也就是老版的System V中,使用sighold添加进程的信号掩码。。和posix中的sigprocmask作用一样。
|
不理解就多看几遍。多写测试代码验证。