shithub: drawterm

ref: df9c9a8f7c088cb52d5feb0757b51e69bffd380d
dir: /posix-386/tas.c/

View raw version
#include "u.h"
#include "libc.h"

int
tas(int *x)
{
	int     v;

	__asm__(	"movl   $1, %%eax\n\t"
			"xchgl  %%eax,(%%ecx)"
			: "=a" (v)
			: "c" (x)
	);
	switch(v) {
	case 0:
	case 1:
		return v;
	default:
		print("canlock: corrupted 0x%lux\n", v);
		return 1;
	}
}