You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
423 B
15 lines
423 B
4 months ago
|
#include <clc/clc.h>
|
||
|
#include "utils.h"
|
||
|
|
||
|
#define __CLC_ATOM_IMPL(AS, TYPE) \
|
||
|
_CLC_OVERLOAD _CLC_DEF TYPE __CLC_XCONCAT(atom_, __CLC_ATOMIC_OP) (volatile AS TYPE *p, TYPE val) { \
|
||
|
return __CLC_XCONCAT(atomic_, __CLC_ATOMIC_OP) (p, val); \
|
||
|
}
|
||
|
|
||
|
__CLC_ATOM_IMPL(__CLC_ATOMIC_ADDRESS_SPACE, int)
|
||
|
__CLC_ATOM_IMPL(__CLC_ATOMIC_ADDRESS_SPACE, uint)
|
||
|
|
||
|
#undef __CLC_ATOM_IMPL
|
||
|
#undef __CLC_ATOMIC_OP
|
||
|
#undef __CLC_ATOMIC_ADDRESS_SPACE
|