atomic_fetch_inc 関数
指定されたメモリ位置に格納されている値をアトミックにインクリメントします。
inline int atomic_fetch_inc(
_Inout_ int * _Dest
) restrict(amp);
inline unsigned int atomic_fetch_inc(
_Inout_ unsigned int * _Dest
) restrict(amp);
パラメーター
- _Dest
インクリメントされる値のメモリでの位置。
戻り値
メモリ位置に格納されている元の値。
必要条件
ヘッダー: amp.h
名前空間: Concurrency