atomic_fetch_or 関数 (C++ AMP)
アトミックにメモリ位置の値と値のビットごとのかの操作を実行します。
inline int atomic_fetch_or(
_Inout_ int * _Dest,
int _Value
) restrict(amp);
inline unsigned int atomic_fetch_or(
_Inout_ unsigned int * _Dest,
unsigned int _Value
) restrict(amp);
パラメーター
_Dest
メモリ位置へのポインター。_Value
ビットごとのを計算で使用する値。
戻り値
メモリ位置の元の値。
必要条件
ヘッダー: amp.h
名前空間: Concurrency