wasm_thread.h 457 B

1234567891011121314151617181920212223
  1. #pragma once
  2. typedef struct {
  3. int nothing;
  4. } iron_thread_impl_t;
  5. typedef struct {
  6. int nothing;
  7. } iron_mutex_impl_t;
  8. #pragma once
  9. #define IRON_ATOMIC_COMPARE_EXCHANGE(pointer, oldValue, newValue)
  10. #define IRON_ATOMIC_COMPARE_EXCHANGE_POINTER(pointer, oldValue, newValue)
  11. #define IRON_ATOMIC_INCREMENT(pointer)
  12. #define IRON_ATOMIC_DECREMENT(pointer)
  13. #define IRON_ATOMIC_EXCHANGE_32(pointer, value)
  14. #define IRON_ATOMIC_EXCHANGE_FLOAT(pointer, value)