shithub: drawcpu

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