shithub: drawcpu

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