thread同步测试

1 编译运行附件中的代码,提交运行结果截图,并说明程序功能

该程序主要功能是查看线程同步的机理,product为同步资源,consume为使用资源的线程。可以看到那些线程使用了哪个资源。

2 修改代码,把同步资源个数减少为3个,把使用资源的线程增加到 (你的学号%3 + 4)个,编译代码,提交修改后的代码和运行结果截图。

代码如下:

#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
#include <semaphore.h>

#define NUM 3
int queue[NUM];
sem_t blank_number, product_number;

void *producer ( void * arg )
{
        static int p = 0;

        for ( ;; ) {
                sem_wait( &blank_number );
                queue[p] = rand() % 1000;
                printf("Product %d \n", queue[p]);
                p = (p+1)%NUM;
                sleep ( rand() % 5);
                sem_post( &product_number );
        }
}
void *consumer ( void * arg )
{

        static int c = 0;
for( ;; ) {
                sem_wait( &product_number );
                printf("Consume %d\n", queue[c]);
                c = (c+1)%NUM;
                sleep( rand() % 5 );
                sem_post( &blank_number );
        }
}

int main(int argc, char *argv[] )
{
        pthread_t pid=3, cid=6;

        sem_init( &blank_number, 0, NUM );
        sem_init( &product_number, 0, 0);
        pthread_create( &pid, NULL, producer, NULL);
        pthread_create( &cid, NULL, consumer, NULL);
        pthread_join( pid, NULL );
        pthread_join( cid, NULL );
        sem_destroy( &blank_number );
        sem_destroy( &product_number );
        return 0;
}
posted @   20191316王秋雨  阅读(12)  评论(0编辑  收藏  举报
编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
点击右上角即可分享
微信分享提示