作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在一个类中,我们不得不使用信号量来完成线程工作。
sem_init 的原型(prototype)(和头文件)如下:
int sem_init(sem_t *sem, int pshared, unsigned int value);
value is an initial value to set the semaphore to
最佳答案
信号量值表示可在线程之间共享的公共(public)资源的数量。如果该值大于 0,则调用 sem_wait 的线程无需等待。它只是将值减 1 并继续访问公共(public)资源。 sem_post 会将资源添加回池中。所以它将值加 1。如果值为 0,那么我们将等到有人完成 sem_post。
关于multithreading - sem_init(…) : What is the value parameter for?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9369873/
我是一名优秀的程序员,十分优秀!