Skip to content

Instantly share code, notes, and snippets.

@hide
hide / atomic.c
Created August 20, 2019 06:56
Atomic sample (gcc -std=gnu11 -pthread -o atomic atomic.c)
#include <stdio.h>
#include <string.h>
#include <stdatomic.h>
#include <pthread.h>
#include <stdint.h>
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
struct object
{