atomic_fetch_add - função
Adicione atomicamente um valor ao valor de um local de memória.
inline int atomic_fetch_add(
_Inout_ int * _Dest,
int _Value
) restrict(amp);
inline unsigned int atomic_fetch_add(
_Inout_ unsigned int * _Dest,
unsigned int _Value
) restrict(amp);
Parâmetros
_Dest
Ponteiro para o local da memória._Value
O valor a ser adicionado.
Valor de retorno
O valor original do local da memória.
Requisitos
Cabeçalho: amp.h
Namespace: Concurrency