semoper.* renamed to atomic.*

This commit is contained in:
2022-08-31 08:50:20 +02:00
parent eadaa6fc8f
commit f9856341c1
6 changed files with 21 additions and 25 deletions

13
atomic.h Normal file
View File

@@ -0,0 +1,13 @@
/*
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
*/
#ifndef SEMOPER_H_QWERTY
#define SEMOPER_H_QWERTY
#include <stdint.h>
int32_t atom_inc32(volatile int32_t *addr, int32_t value);
int32_t atom_dec32(volatile int32_t *addr, int32_t value);
#endif