3 ** Distributed under the terms of the MIT License.
10 #include "fssh_types.h"
18 void fssh_atomic_set(int32_t* value
, int32_t newValue
);
19 int32_t fssh_atomic_get_and_set(int32_t* value
, int32_t newValue
);
20 int32_t fssh_atomic_test_and_set(int32_t *value
, int32_t newValue
,
22 int32_t fssh_atomic_add(int32_t *value
, int32_t addValue
);
23 int32_t fssh_atomic_and(int32_t *value
, int32_t andValue
);
24 int32_t fssh_atomic_or(int32_t *value
, int32_t orValue
);
25 int32_t fssh_atomic_get(int32_t *value
);
27 void fssh_atomic_set64(int64_t* value
, int64_t newValue
);
28 int64_t fssh_atomic_get_and_set64(int64_t* value
, int64_t newValue
);
29 int64_t fssh_atomic_test_and_set64(int64_t *value
, int64_t newValue
,
31 int64_t fssh_atomic_add64(int64_t *value
, int64_t addValue
);
32 int64_t fssh_atomic_and64(int64_t *value
, int64_t andValue
);
33 int64_t fssh_atomic_or64(int64_t *value
, int64_t orValue
);
34 int64_t fssh_atomic_get64(int64_t *value
);
41 #endif /* _FSSH_ATOMIC_H */