@@ -462,8 +462,8 @@ OSHMEM_DECLSPEC void pshmem_ulonglong_atomic_and(unsigned long long *target, uns
462
462
#define pshmem_atomic_and (dst, val, pe ) \
463
463
_Generic (&*(dst), \
464
464
unsigned int*: pshmem_uint_atomic_and, \
465
- unsigned iong *: pshmem_ulong_atomic_and, \
466
- unsigned iong long*: pshmem_ulonglong_atomic_and)(dst, val, pe)
465
+ unsigned long *: pshmem_ulong_atomic_and, \
466
+ unsigned long long*: pshmem_ulonglong_atomic_and)(dst, val, pe)
467
467
#endif
468
468
469
469
/* Atomic Or */
@@ -474,8 +474,8 @@ OSHMEM_DECLSPEC void pshmem_ulonglong_atomic_or(unsigned long long *target, unsi
474
474
#define pshmem_atomic_or (dst, val, pe ) \
475
475
_Generic (&*(dst), \
476
476
unsigned int*: pshmem_uint_atomic_or, \
477
- unsigned iong *: pshmem_ulong_atomic_or, \
478
- unsigned iong long*: pshmem_ulonglong_atomic_or)(dst, val, pe)
477
+ unsigned long *: pshmem_ulong_atomic_or, \
478
+ unsigned long long*: pshmem_ulonglong_atomic_or)(dst, val, pe)
479
479
#endif
480
480
481
481
/* Atomic Xor */
@@ -486,8 +486,8 @@ OSHMEM_DECLSPEC void pshmem_ulonglong_atomic_xor(unsigned long long *target, uns
486
486
#define pshmem_atomic_xor (dst, val, pe ) \
487
487
_Generic (&*(dst), \
488
488
unsigned int*: pshmem_uint_atomic_xor, \
489
- unsigned iong *: pshmem_ulong_atomic_xor, \
490
- unsigned iong long*: pshmem_ulonglong_atomic_xor)(dst, val, pe)
489
+ unsigned long *: pshmem_ulong_atomic_xor, \
490
+ unsigned long long*: pshmem_ulonglong_atomic_xor)(dst, val, pe)
491
491
#endif
492
492
493
493
/* Atomic Inc */
0 commit comments