fixed mistakes around semaphores

This commit is contained in:
2022-08-30 19:42:30 +02:00
parent 6974c2b8e6
commit ededa69859
4 changed files with 12 additions and 11 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
#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);
int32_t atom_inc32(volatile int32_t *addr, int32_t value);
int32_t atom_dec32(volatile int32_t *addr, int32_t value);
#endif