shithub: drawcpu

ref: 56e529d5e9a213be7a9738f2254fc4c31f46359f
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);
}