shithub: drawcpu

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