Files
stm32uav/semoper.h

14 lines
258 B
C

/*
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
*/
#ifndef SEMOPER_H_QWERTY
#define SEMOPER_H_QWERTY
#include <stdint.h>
int32_t sem_post32(volatile int32_t *addr, int32_t value);
int32_t sem_wait32(volatile int32_t *addr, int32_t value);
#endif