shithub: drawcpu

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