华为云国际站代理商充值:c语言 线程间通信

C语言中线程间通信的方式有多种,以下是几种常用的方法:

  1. 全局变量和互斥锁(Mutex)
    使用全局变量来存储线程之间共享的数据,并使用互斥锁来确保对共享数据的互斥访问。

    #include <pthread.h>
    #include <stdio.h>
    #include <stdlib.h>
    
    int shared_data = 0;
    pthread_mutex_t lock;
    
    void *thread_func(void *arg) {
        pthread_mutex_lock(&lock);
        shared_data++;
        printf("Thread %d: %dn", *(int *)arg, shared_data);
        pthread_mutex_unlock(&lock);
        return NULL;
    }
    
    int main() {
        pthread_t threads[2];
        int thread_ids[2] = {1, 2};
    
        pthread_mutex_init(&lock, NULL);
    
        for (int i = 0; i < 2; i++) {
            pthread_create(&threads[i], NULL, thread_func, &thread_ids[i]);
        }
    
        for (int i = 0; i < 2; i++) {
            pthread_join(threads[i], NULL);
        }
    
        pthread_mutex_destroy(&lock);
        return 0;
    }
  2. 条件变量(Condition Variable)
    条件变量可以用来让一个线程等待另一个线程发出某个信号,以实现线程间的同步。

    #include <pthread.h>
    #include <stdio.h>
    #include <stdlib.h>
    
    int ready = 0;
    pthread_mutex_t lock;
    pthread_cond_t cond;
    
    void *thread_func(void *arg) {
        pthread_mutex_lock(&lock);
        while (!ready) {
            pthread_cond_wait(&cond, &lock);
        }
        printf("Thread %d is runningn", *(int *)arg);
        pthread_mutex_unlock(&lock);
        return NULL;
    }
    
    int main() {
        pthread_t threads[2];
        int thread_ids[2] = {1, 2};
    
        pthread_mutex_init(&lock, NULL);
        pthread_cond_init(&cond, NULL);
    
        for (int i = 0; i < 2; i++) {
            pthread_create(&threads[i], NULL, thread_func, &thread_ids[i]);
        }
    
        sleep(1); // 模拟一些操作
        pthread_mutex_lock(&lock);
        ready = 1;
        pthread_cond_broadcast(&cond);
        pthread_mutex_unlock(&lock);
    
        for (int i = 0; i < 2; i++) {
            pthread_join(threads[i], NULL);
        }
    
        pthread_mutex_destroy(&lock);
        pthread_cond_destroy(&cond);
        return 0;
    }
  3. 信号量(Semaphore)
    信号量可以用来控制对共享资源的访问。

    #include <pthread.h>
    #include <semaphore.h>
    #include <stdio.h>
    #include <stdlib.h>
    
    sem_t sem;
    
    void *thread_func(void *arg) {
        sem_wait(&sem);
        printf("Thread %d is runningn", *(int *)arg);
        sem_post(&sem);
        return NULL;
    }
    
    int main() {
        pthread_t threads[2];
        int thread_ids[2] = {1, 2};
    
        sem_init(&sem, 0, 1);
    
        for (int i = 0; i < 2; i++) {
            pthread_create(&threads[i], NULL, thread_func, &thread_ids[i]);
        }
    
        for (int i = 0; i < 2; i++) {
            pthread_join(threads[i], NULL);
        }
    
        sem_destroy(&sem);
        return 0;
    }

这三种方法是C语言中常用的线程间通信方式,每种方法都有其适用的场景和优缺点,具体选择哪种方法需要根据具体的应用需求来决定。

发布者:luotuoemo,转转请注明出处:https://www.jintuiyun.com/192679.html

(0)
luotuoemo的头像luotuoemo
上一篇 2024年7月24日 20:45
下一篇 2024年7月24日

相关推荐

  • 华为云国际站代理商:cdn未备案域名

    华为云国际站代理商:CDN未备案域名的优势与解决方案 随着全球互联网的快速发展,企业对于网站访问速度、稳定性以及安全性的要求越来越高。尤其是对于跨境电商、国际企业及个人站点,如何优化网站性能、提高用户体验成为了至关重要的议题。在这其中,华为云的CDN服务作为一个成熟且强大的解决方案,得到了广泛的应用,尤其是在解决未备案域名加速方面。本文将从华为云的CDN服务…

    2024年11月18日
    9500
  • 华为云代理商:超链宝区块链

    华为云代理商:超链宝区块链 引言 在当今数字化转型快速发展的背景下,区块链技术逐渐被各行业所重视,并成为推动创新与效率提升的重要动力。作为全球领先的ICT基础设施和解决方案提供商,华为凭借其强大的云计算能力,为企业提供了可靠的云服务。作为华为云代理商,超链宝区块链致力于将华为云的优势与区块链技术相结合,为客户提供更加高效、安全和智能的服务。 华为云的优势 1…

    2024年10月9日
    9700
  • 华为云国际站代理商充值:cdn第四峰值计费定义为

    华为云国际站代理商充值:CDN第四峰值计费定义分析 随着云计算技术的飞速发展,越来越多的企业开始依赖云服务来提升其业务能力,尤其是在全球范围内提供稳定、高效的网络服务。华为云作为全球领先的云计算服务提供商,凭借其强大的技术支持和覆盖全球的基础设施,迅速占领了国际市场。在其丰富的产品体系中,内容分发网络(CDN)服务作为一种重要的互联网加速技术,广泛应用于流媒…

    2024年11月30日
    7300
  • 惠州华为云代理商:android连接tomcat服务器配置

    惠州华为云代理商:Android连接Tomcat服务器配置 华为云的优势 高性能:华为云提供的服务器配置可快速响应,保证稳定性,支持大规模并发访问。 安全可靠:华为云具备完善的安全保障措施,对用户数据进行全方位保护。 弹性扩展:根据客户需求,华为云可以为其提供灵活的服务器配置和资源管理,实现弹性扩展。 易用性:华为云提供简易的操作界面和多种API语言接口,方…

    2024年3月15日
    12400
  • 华为云国际站代理商:cakephp 登录

    华为云国际站代理商:cakephp 登录 一、介绍 华为云是全球领先的云计算服务提供商,致力于为客户提供全面、安全、可靠的云计算服务。作为华为云国际站代理商,我们将为您介绍如何通过cakephp登录华为云平台,体验其强大的云服务器产品。 二、cakephp登录步骤 在cakephp中配置华为云API的认证信息。 编写登录页面,包括用户名和密码输入框。 调用华…

    2024年5月21日
    15100

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

联系我们

4000-747-360

在线咨询: QQ交谈

邮件:ixuntao@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信
购买阿里云服务器请访问:https://www.4526.cn/