shithub: drawcpu

ref: cc44473e8c095bb48bfcf68b982239bddfb97e07
dir: /tas.c/

View raw version
#include "u.h"
#include "libc.h"

int
tas(int *x)
{
	return __atomic_test_and_set(x, __ATOMIC_ACQ_REL);
}