Linux信号量sem_t简单实例运用
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
sem_t sem;
定义一个信号量变量。使用时需首先使用sem_init()函数初始化。
在多线程编程中,想让某个线程阻塞等待,减少cpu占用,在该需要运行时才运行。使用信号量一个A线程sem_wait(),阻塞等待;一个B线程在需要运行A线程时sem_post(),解除A线程阻塞。
下面是简单demo:
#include <stdint.h>
#include <semaphore.h>
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
sem_t sem;
void *testfunc(void *arg)
{
while(1)
{
sem_wait(&sem);
//do something....
printf("hello world...\n");
}
}
int main()
{
pthread_t ps;
sem_init(&sem, 0, 0);
pthread_create(&ps,NULL,testfunc,NULL);
while(1)
{
//每隔一秒sem_post 信号量sem加1 子线程sem_wait解除等待 打印hello world
sem_post(&sem);
sleep(1);
}
return 0;
}
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)