atomic example

This commit is contained in:
Alexander Popov 2023-08-01 03:25:33 +03:00
parent bab9d2d315
commit 33e594f6af
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 30 additions and 0 deletions

30
~/C/atomic.c Normal file
View File

@ -0,0 +1,30 @@
#include <stdio.h>
#include <threads.h>
#include <stdatomic.h>
atomic_int acnt;
int cnt;
int f(void* thr_data)
{
(void)thr_data;
for(int n = 0; n < 1000; ++n) {
++cnt;
++acnt;
// for this example, relaxed memory order is sufficient, e.g.
// atomic_fetch_add_explicit(&acnt, 1, memory_order_relaxed);
}
return 0;
}
int main(void)
{
thrd_t thr[10];
for(int n = 0; n < 10; ++n)
thrd_create(&thr[n], f, NULL);
for(int n = 0; n < 10; ++n)
thrd_join(thr[n], NULL);
printf("The atomic counter is %u\n", acnt);
printf("The non-atomic counter is %u\n", cnt);
}