迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > C语言 >

在 C 语言中使用原子类型

作者:迹忆客 最近更新:2023/03/30 浏览次数:

本文将演示有关如何在 C 语言中使用原子类型的多种方法。


使用原子类型隐式同步对共享资源的访问

原子类型的对象是唯一可以被多个线程同时访问和修改而不会发生竞争条件的对象。这个特性对于从不同线程访问的全局变量和静态变量至关重要,它会保留程序的正确性。通常,使用原子类型对象可以替代锁定互斥对象之类的对象以及它们的标准 API 函数(如 mtx_lockmtx_unlock 等)。以下代码示例演示了计数问题的简单情况,其中多个线程递增一个共享的全局计数器变量。最后,在程序末尾将总和打印到 stdout。请注意,我们将 counter 声明为通常的 int 类型。遗憾的是,即使某些执行可能会产生正确的结果,该程序还是有缺陷的。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <threads.h>

#ifndef NUM_THREADS
#define NUM_THREADS 4
#endif

int counter = 0;

enum {MAX_ITER = 10000};

void incrementCounter(void *thr_id) {
    long tid;
    tid = (long)thr_id;
    printf("thread %ld started incrementing ID - %lu\n", tid, thrd_current());

    for (int i = 0; i < MAX_ITER; ++i) {
        counter += 1;
    }

    thrd_exit(EXIT_SUCCESS);
}

int main(int argc, char const *argv[]) {
    thrd_t threads[NUM_THREADS];
    int rc;
    long t;

    for (t = 0; t < NUM_THREADS; t++) {
        rc = thrd_create(&threads[t], (thrd_start_t) incrementCounter, (void *)t);
        if (rc == thrd_error) {
            printf("ERORR; thrd_create() call failed\n");
            exit(EXIT_FAILURE);
        }
    }

    for (t = 0; t < NUM_THREADS; t++) {
        thrd_join(threads[t], NULL);
    }
    printf("count = %d\n", counter);

    thrd_exit(EXIT_SUCCESS);
}

输出:

thread 0 started incrementing ID - 140097636923136
thread 2 started incrementing ID - 140097620137728
thread 1 started incrementing ID - 140097628530432
thread 3 started incrementing ID - 140097611745024
count = 18851

请注意,使用 thrd_create 调用创建其他线程的主线程不会增加计数器变量,因此总和应为 MAX_ITER 常量和 NUM_THREADS 的倍数,表示线程数。可以通过用互斥锁/解锁功能或信号量动作将 counter += 1 行包围来解决此问题,但是在这种情况下,我们仅将 counter 声明为 atomic_int 的类型。现在,这个整数对象具有原子属性,这意味着对它的任何访问都将作为一条指令进行而不会中断,并保证了程序的顺序执行。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <threads.h>
#include <stdatomic.h>

#ifndef NUM_THREADS
#define NUM_THREADS 4
#endif

atomic_int counter = 0;

enum {MAX_ITER = 10000};

void incrementCounter(void *thr_id) {
    long tid;
    tid = (long)thr_id;
    printf("thread %ld started incrementing ID - %lu\n", tid, thrd_current());

    for (int i = 0; i < MAX_ITER; ++i) {
        counter += 1;
    }

    thrd_exit(EXIT_SUCCESS);
}

int main(int argc, char const *argv[]) {
    thrd_t threads[NUM_THREADS];
    int rc;
    long t;

    for (t = 0; t < NUM_THREADS; t++) {
        rc = thrd_create(&threads[t], (thrd_start_t) incrementCounter, (void *)t);
        if (rc == thrd_error) {
            printf("ERORR; thrd_create() call failed\n");
            exit(EXIT_FAILURE);
        }
    }

    for (t = 0; t < NUM_THREADS; t++) {
        thrd_join(threads[t], NULL);
    }
    printf("count = %d\n", counter);

    thrd_exit(EXIT_SUCCESS);
}

输出:

thread 0 started incrementing ID - 140125987915520
thread 1 started incrementing ID - 140125979522816
thread 2 started incrementing ID - 140125971130112
thread 3 started incrementing ID - 140125962737408
count = 40000

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 C 语言中使用 typedef enum

发布时间:2023/05/07 浏览次数:181 分类:C语言

本文介绍了如何在 C 语言中使用 typedef enum。使用 enum 在 C 语言中定义命名整数常量 enum 关键字定义了一种叫做枚举的特殊类型。

C 语言中的静态变量

发布时间:2023/05/07 浏览次数:151 分类:C语言

本文介绍了如何在 C 语言中使用静态变量。在 C 语言中使用 static 变量在函数调用之间保存变量值

C 语言中生成随机数

发布时间:2023/05/07 浏览次数:64 分类:C语言

本文演示了如何在 C 语言中生成随机数。使用 rand 和 srand 函数在 C 语言中生成随机数

C 语言中的 i++ 与++i

发布时间:2023/05/07 浏览次数:83 分类:C语言

本文演示了如何在 C 语言中使用前缀增量与后缀增量运算符。C 语言中++i 和 i++ 记号的主要区别

C 语言中获取当前工作目录

发布时间:2023/05/07 浏览次数:182 分类:C语言

本文演示了如何在 C 语言中获取当前工作目录。使用 getcwd 函数获取当前工作目录的方法

C 语言中的位掩码

发布时间:2023/05/07 浏览次数:126 分类:C语言

本文介绍了如何在 C 语言中使用位掩码。使用 struct 关键字在 C 语言中定义位掩码数据

C 语言中的排序函数

发布时间:2023/05/07 浏览次数:181 分类:C语言

本文演示了如何在 C 语言中使用标准库排序函数。使用 qsort 函数对 C 语言中的整数数组进行排序

C 语言中的 extern 关键字

发布时间:2023/05/07 浏览次数:114 分类:C语言

本文介绍了如何在 C 语言中使用 extern 关键字。C 语言中使用 extern 关键字来声明一个在其他文件中定义的变量

C 语言中的 #ifndef

发布时间:2023/05/07 浏览次数:186 分类:C语言

本文介绍了如何在 C 语言中使用 ifndef。在 C 语言中使用 ifndef 保护头文件不被多次包含 C 语言中的头文件用于定义同名源文件中实现的函数的接口。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便