Merge nanoos

This commit is contained in:
2022-09-06 08:30:16 +02:00
parent 5947cd60cc
commit f3b0eb4a59
16 changed files with 814 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
*/
#ifndef SEMOPER_H_QWERTY
#define SEMOPER_H_QWERTY
#include <stdint.h>
int32_t atomic_inc32(volatile int32_t *addr, int32_t value);
int32_t atomic_dec32(volatile int32_t *addr, int32_t value);
int32_t atomic_dec32le0(volatile int32_t *addr, int32_t value);
#endif