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