SDL_AtomicSet

Use this function to set an atomic variable to a value.

使用这个函数可以设置原子变量的值。

Syntax 语法

  1. int SDL_AtomicSet(SDL_atomic_t* a,
  2. int v)

Function Parameters 函数参数

参数 解释(EN) 解释(ZH)
a a pointer to an SDL_atomic_t variable to be modified. 指向要修改的 SDL_atomic_t 的变量。
v the desired value. 预期值。

Return Value 返回值

Returns the previous value of the atomic variable.

返回原子变量的前值。

Code Examples 示例代码

  1. 暂无

Remarks 备注

This function also acts as a full memory barrier.

这个函数也可以作为完全内存屏障。

Related Functions 相关函数

SDL_AtomicGet


SixerMe Translated