Add complete set of atomit_store-operations

This commit is contained in:
Johan Wikman
2018-02-16 15:06:24 +02:00
parent 5665ecc591
commit 350eaf0e90
2 changed files with 26 additions and 2 deletions

View File

@ -73,8 +73,10 @@ void* atomic_load_ptr(void * const *variable);
* @param variable Pointer the the variable to store to
* @param value Value to be stored
*/
void atomic_store_int32(int *variable, int value);
void atomic_store_int(int *variable, int value);
void atomic_store_int32(int32_t *variable, int32_t value);
void atomic_store_int64(int64_t *variable, int64_t value);
void atomic_store_uint32(uint32_t *variable, uint32_t value);
void atomic_store_uint64(uint64_t *variable, uint64_t value);
void atomic_store_ptr(void **variable, void *value);