如何使用Linux提供的信号量来实现进程的互斥和同步?

如何使用Linux提供的信号量来实现进程的互斥和同步?,第1张

#include<stdio.h>

#include<pthread.h>

#include<unistd.h>

#include<fcntl.h>

#include<sys/stat.h>

#include<sys/types.h>

#include<semaphore.h>

#include<stdlib.h>

#define N 3

pthread_mutex_t mutex_w,mutex_r// 定义读写互斥锁

sem_t sem_w,sem_r//定义读写信号量

int data[N]

int pos=0

void *function_w(void *arg)

{

int w = *(int *)arg

pos = w

while(1)

{

usleep(100000)

sem_wait(&sem_w)//等待可写的资源

pthread_mutex_lock(&mutex_w)//禁止别的线程写此资源

data[pos] = w

w++

w++

w++

pos++

pos=pos%N

pthread_mutex_unlock(&mutex_w)//别的线程可写此资源

sem_post(&sem_r)// 释放一个读资源

}

return (void *)0

}

void *function_r(void *arg)

{

while(1)

{

sem_wait(&sem_r)//等待可读的资源

pthread_mutex_lock(&mutex_r)//禁止别的线程读此资源

printf("%d\n",data[(pos+N-1)%N])

pthread_mutex_unlock(&mutex_r)//别的线程可读此资源

sem_post(&sem_w)// 释放一个写资源

}

return (void *)0

}

int main(int argc, char **argv)

{

pthread_t thread[2*N]

int i

pthread_mutex_init(&mutex_w,NULL)

pthread_mutex_init(&mutex_r,NULL)

sem_init(&sem_w,0,N)

sem_init(&sem_r,0,0)

for(i=0i<Ni++)

{

if ( pthread_create(&thread[i],NULL,function_w,(void *)&i) <0)//创建写线程

{

perror("pthread_create")

exit(-1)

}

}

for(i=Ni<2*Ni++)

{

if ( pthread_create(&thread[i],NULL,function_r,NULL) <0)//创建读线程

{

perror("pthread_create")

exit(-1)

}

}

sleep(1)

return(0)

}

看哪个符合:

SEMR System Executive Management Report 系统操作管理报告

SEMR Schoolwide Enrichment Model-Reading (frameworkalso seen as SEM-R)

SEMR Senior Executive Management Report (US Department of Defense) 高级执行管理报告

SEMR Sustainability Executive Management Review (细胞的)可染性执行管理报告

上哪里弄这么个词?说明一下出处嘛,要不人家怎么知道?!

既然是ID上的,那就不一定有什么意义啦. 搞得大家猜了这么久...

英语里是没这个词啦,看看别的语里面有没有

推出SMARTECH系列。森马“聪明”地推出了SMARTECH系列,将功能性设计的灵感,加入到核心的休闲品类中进行创新。森马SEM/R创立于1996年,是市场领先的国民生活时尚品牌,持续为中国新时代青年提供多场景穿搭,高品质,高性价比的服饰产品。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/336317.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-04
下一篇2023-05-04

发表评论

登录后才能评论

评论列表(0条)

    保存